Mon, 22 Apr 2019 10:38:32 +0200
HgStatusMonitorThread: fixed an issue handling branches with spaces in their name.
eric6/Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py | file | annotate | diff | comparison | revisions |
diff -r c634f51e40ec -r cf9c2dc3f3cc eric6/Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py --- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py Sun Apr 21 17:27:52 2019 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgStatusMonitorThread.py Mon Apr 22 10:38:32 2019 +0200 @@ -188,7 +188,7 @@ # ignore errors return "" - globalRev, localRev, branch = output.splitlines()[0].split() + globalRev, localRev, branch = output.splitlines()[0].split(None, 2) if globalRev.endswith("+"): globalRev = globalRev[:-1] if localRev.endswith("+"):