mercurial/hg.py
changeset 3072 bc3fe3b5b785
parent 3037 3acb76f0124d
child 3195 705e30c0a230
--- a/mercurial/hg.py	Fri Sep 08 02:16:16 2006 +0200
+++ b/mercurial/hg.py	Fri Sep 08 09:36:18 2006 +0200
@@ -115,7 +115,7 @@
     source = localpath(source)
 
     if os.path.exists(dest):
-        raise util.Abort(_("destination '%s' already exists"), dest)
+        raise util.Abort(_("destination '%s' already exists") % dest)
 
     class DirCleanup(object):
         def __init__(self, dir_):