Sun, 01 Feb 2015 18:25:31 +0100
Corrected some code style issues.
DebugClients/Python/DebugBase.py | file | annotate | diff | comparison | revisions | |
Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py | file | annotate | diff | comparison | revisions |
--- a/DebugClients/Python/DebugBase.py Sun Feb 01 18:23:12 2015 +0100 +++ b/DebugClients/Python/DebugBase.py Sun Feb 01 18:25:31 2015 +0100 @@ -636,7 +636,6 @@ @param exctb traceback for the exception @param unhandled flag indicating an uncaught exception """ - if exctype in [GeneratorExit, StopIteration]: # ignore these return
--- a/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Sun Feb 01 18:23:12 2015 +0100 +++ b/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py Sun Feb 01 18:25:31 2015 +0100 @@ -1068,7 +1068,7 @@ self.__filterLogsEnabled = True if self.__actionMode() == "filter": - self.__filterLogs() + self.__filterLogs() self.__updateDiffButtons() self.__updateToolMenuActions() @@ -1709,6 +1709,8 @@ def on_modeComboBox_currentIndexChanged(self, index): """ Private slot to react on mode changes. + + @param index index of the selected entry (integer) """ mode = self.modeComboBox.itemData(index) findMode = mode == "find"