Fixed an issue in the Mercurial log browser dialog causing the 'Copy Changeset' button not being updated correctly.

Thu, 02 May 2013 18:09:11 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 02 May 2013 18:09:11 +0200
changeset 2642
c9f965bd21d2
parent 2641
54449eeec336
child 2643
e870fc2b4819

Fixed an issue in the Mercurial log browser dialog causing the 'Copy Changeset' button not being updated correctly.

Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py file | annotate | diff | comparison | revisions
--- a/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py	Wed May 01 14:48:23 2013 +0200
+++ b/Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py	Thu May 02 18:09:11 2013 +0200
@@ -470,7 +470,7 @@
                 self.__projectRevision = outputList[0].strip()
                 if self.__projectRevision.endswith("+"):
                     self.__projectRevision = self.__projectRevision[:-1]
-                    self.__projectBranch = outputList[1].strip()
+                self.__projectBranch = outputList[1].strip()
     
     def __getClosedBranches(self):
         """

eric ide

mercurial