diff mercurial/commands.py @ 1233:5381b0d88e9e

Fix abort message for clone
author mpm@selenic.com
date Tue, 13 Sep 2005 14:18:18 -0500
parents 2eb1cd695dd2
children 6a4f181497c9
line wrap: on
line diff
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -592,7 +592,7 @@ def clone(ui, source, dest=None, **opts)
         dest = os.path.basename(os.path.normpath(source))
 
     if os.path.exists(dest):
-        raise util.Abort("destination '%s' already exists")
+        raise util.Abort("destination '%s' already exists", dest)
 
     dest = os.path.realpath(dest)