changeset 5841:07ca22a72dcc

svn: fix copy exception
author "Shun-ichi GOTO" <shunichi.goto@gmail.com>
date Fri, 11 Jan 2008 14:06:05 -0600
parents c67dfc4ecba6
children 111ed8c871bf
files hgext/convert/subversion.py
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/convert/subversion.py	Fri Jan 11 14:06:05 2008 -0600
+++ b/hgext/convert/subversion.py	Fri Jan 11 14:06:05 2008 -0600
@@ -415,7 +415,9 @@
                 if ent.copyfrom_path:
                     copyfrom_path = get_entry_from_path(ent.copyfrom_path)
                     if copyfrom_path:
-                        self.ui.debug("Copied to %s from %s@%s\n" % (entry, copyfrom_path, ent.copyfrom_rev))
+                        self.ui.debug("Copied to %s from %s@%s\n" %
+                                      (entrypath, copyfrom_path,
+                                       ent.copyfrom_rev))
                         # It's probably important for hg that the source
                         # exists in the revision's parent, not just the
                         # ent.copyfrom_rev