Mercurial > public > mercurial-scm > hg-stable
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 Tue Sep 13 14:16:15 2005 -0500 +++ b/mercurial/commands.py Tue Sep 13 14:18:18 2005 -0500 @@ -592,7 +592,7 @@ 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)