Wed, 23 Apr 2014 23:25:17 +0200
python2Compatible flag added.
--- a/ChangeLog Sat Apr 12 19:50:26 2014 +0200 +++ b/ChangeLog Wed Apr 23 23:25:17 2014 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 1.3.0: +- Python 2 compatibility flag added + Version 1.2.2: - bug fixes
--- a/PluginTimeTracker.py Sat Apr 12 19:50:26 2014 +0200 +++ b/PluginTimeTracker.py Wed Apr 23 23:25:17 2014 +0200 @@ -7,7 +7,7 @@ Module implementing the Time Tracker plugin. """ -from __future__ import unicode_literals # __IGNORE_WARNING__ +from __future__ import unicode_literals import os @@ -24,7 +24,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "1.2.2" +version = "1.3.0" className = "TimeTrackerPlugin" packageName = "TimeTracker" shortDescription = "Time Tracker to keep track of the project time." @@ -34,6 +34,7 @@ """ into tasks.""" needsRestart = False pyqtApi = 2 +python2Compatible = True # End-Of-Header error = ""
--- a/TimeTracker/ConfigurationPage/TimeTrackerPage.py Sat Apr 12 19:50:26 2014 +0200 +++ b/TimeTracker/ConfigurationPage/TimeTrackerPage.py Wed Apr 23 23:25:17 2014 +0200 @@ -7,7 +7,7 @@ Module implementing the Time Tracker configuration page. """ -from __future__ import unicode_literals # __IGNORE_WARNING__ +from __future__ import unicode_literals from Preferences.ConfigurationPages.ConfigurationPageBase import \ ConfigurationPageBase
--- a/TimeTracker/TimeTrackEntry.py Sat Apr 12 19:50:26 2014 +0200 +++ b/TimeTracker/TimeTrackEntry.py Wed Apr 23 23:25:17 2014 +0200 @@ -7,7 +7,7 @@ Module implementing the time track entry class. """ -from __future__ import unicode_literals # __IGNORE_WARNING__ +from __future__ import unicode_literals from PyQt4.QtCore import Qt, QDateTime, QTime
--- a/TimeTracker/TimeTracker.py Sat Apr 12 19:50:26 2014 +0200 +++ b/TimeTracker/TimeTracker.py Wed Apr 23 23:25:17 2014 +0200 @@ -7,7 +7,7 @@ Module implementing the time tracker object. """ -from __future__ import unicode_literals # __IGNORE_WARNING__ +from __future__ import unicode_literals import os
--- a/TimeTracker/TimeTrackerEntryDialog.py Sat Apr 12 19:50:26 2014 +0200 +++ b/TimeTracker/TimeTrackerEntryDialog.py Wed Apr 23 23:25:17 2014 +0200 @@ -7,7 +7,7 @@ Module implementing the time tracker edit dialog. """ -from __future__ import unicode_literals # __IGNORE_WARNING__ +from __future__ import unicode_literals from PyQt4.QtCore import pyqtSlot, QDateTime, QDate from PyQt4.QtGui import QDialog, QDialogButtonBox
--- a/TimeTracker/TimeTrackerWidget.py Sat Apr 12 19:50:26 2014 +0200 +++ b/TimeTracker/TimeTrackerWidget.py Wed Apr 23 23:25:17 2014 +0200 @@ -7,7 +7,7 @@ Module implementing the time tracker widget. """ -from __future__ import unicode_literals # __IGNORE_WARNING__ +from __future__ import unicode_literals import os