Fixed an issue with the Mercurial plug-in creating a new project with Mercurial VCS. 5_1_x

Sun, 03 Apr 2011 16:37:10 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 03 Apr 2011 16:37:10 +0200
branch
5_1_x
changeset 967
d0f77c6f3fd4
parent 965
d440a0f219d4
child 969
6ab98ee3c804

Fixed an issue with the Mercurial plug-in creating a new project with Mercurial VCS.

Plugins/VcsPlugins/vcsMercurial/hg.py file | annotate | diff | comparison | revisions
--- a/Plugins/VcsPlugins/vcsMercurial/hg.py	Sat Apr 02 13:10:17 2011 +0200
+++ b/Plugins/VcsPlugins/vcsMercurial/hg.py	Sun Apr 03 16:37:10 2011 +0200
@@ -242,9 +242,8 @@
                 args.append('--addremove')
                 args.append('--message')
                 args.append(msg)
-                args.append(projectDir)
                 dia = HgDialog(self.trUtf8('Initial commit to Mercurial repository'))
-                res = dia.startProcess(args)
+                res = dia.startProcess(args, projectDir)
                 if res:
                     dia.exec_()
                 status = dia.normalExit()

eric ide

mercurial