mercurial/localrepo.py
changeset 10371 eacfff116e17
parent 10357 0d64b30b35c3
child 10392 9be6c5900c07
--- a/mercurial/localrepo.py	Sun Feb 07 14:53:17 2010 +0100
+++ b/mercurial/localrepo.py	Sun Feb 07 15:09:02 2010 +0100
@@ -1564,7 +1564,7 @@
 
                     newbranches = list(set(localbrheads) - set(remotebrheads))
                     if newbranches: # new branch requires --force
-                        branchnames = ', '.join("'%s'" % b for b in newbranches)
+                        branchnames = ', '.join("%s" % b for b in newbranches)
                         self.ui.warn(_("abort: push creates "
                                        "new remote branches: %s!\n")
                                      % branchnames)