2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the PySvn version control plugin. | 7 Module implementing the PySvn version control plugin. |
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 QObject | 14 from PyQt4.QtCore import QObject |
13 from PyQt4.QtGui import QApplication | 15 from PyQt4.QtGui import QApplication |
139 """ | 141 """ |
140 Constructor | 142 Constructor |
141 | 143 |
142 @param ui reference to the user interface object (UI.UserInterface) | 144 @param ui reference to the user interface object (UI.UserInterface) |
143 """ | 145 """ |
144 super().__init__(ui) | 146 super(VcsPySvnPlugin, self).__init__(ui) |
145 self.__ui = ui | 147 self.__ui = ui |
146 | 148 |
147 self.__subversionDefaults = { | 149 self.__subversionDefaults = { |
148 "StopLogOnCopy": 1, | 150 "StopLogOnCopy": 1, |
149 "LogLimit": 100, | 151 "LogLimit": 100, |