Helpviewer/Sync/SyncCheckPage.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2403
e3d7a861547c
child 3057
10516539f238
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing the synchronization status wizard page. 7 Module implementing the synchronization status wizard page.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 import os 12 import os
11 13
12 from PyQt4.QtCore import QByteArray, QTimer 14 from PyQt4.QtCore import QByteArray, QTimer
13 from PyQt4.QtGui import QWizardPage, QMovie 15 from PyQt4.QtGui import QWizardPage, QMovie
30 """ 32 """
31 Constructor 33 Constructor
32 34
33 @param parent reference to the parent widget (QWidget) 35 @param parent reference to the parent widget (QWidget)
34 """ 36 """
35 super().__init__(parent) 37 super(SyncCheckPage, self).__init__(parent)
36 self.setupUi(self) 38 self.setupUi(self)
37 39
38 def initializePage(self): 40 def initializePage(self):
39 """ 41 """
40 Public method to initialize the page. 42 Public method to initialize the page.

eric ide

mercurial