2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the Subversion version control plugin. | 7 Module implementing the Subversion 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 |
145 """ | 147 """ |
146 Constructor | 148 Constructor |
147 | 149 |
148 @param ui reference to the user interface object (UI.UserInterface) | 150 @param ui reference to the user interface object (UI.UserInterface) |
149 """ | 151 """ |
150 super().__init__(ui) | 152 super(VcsSubversionPlugin, self).__init__(ui) |
151 self.__ui = ui | 153 self.__ui = ui |
152 | 154 |
153 self.__subversionDefaults = { | 155 self.__subversionDefaults = { |
154 "StopLogOnCopy": True, | 156 "StopLogOnCopy": True, |
155 "LogLimit": 100, | 157 "LogLimit": 100, |