comparison hgext/convert/subversion.py @ 5077:487659a90497

convert: svn: remove debugging message
author Brendan Cully <brendan@kublai.com>
date Sun, 05 Aug 2007 12:09:55 -0700
parents ef338e34a906
children 39b6eaee6fd7 462cc56d898f
comparison
equal deleted inserted replaced
5076:ef338e34a906 5077:487659a90497
357 if new_module != self.module: 357 if new_module != self.module:
358 self.module = new_module 358 self.module = new_module
359 self.reparent(self.module) 359 self.reparent(self.module)
360 360
361 for path, ent in paths: 361 for path, ent in paths:
362 self.ui.write("path %s\n" % path)
363 entrypath = get_entry_from_path(path, module=self.module) 362 entrypath = get_entry_from_path(path, module=self.module)
364 entry = entrypath.decode(self.encoding) 363 entry = entrypath.decode(self.encoding)
365 364
366 kind = svn.ra.check_path(self.ra, entrypath, revnum) 365 kind = svn.ra.check_path(self.ra, entrypath, revnum)
367 if kind == svn.core.svn_node_file: 366 if kind == svn.core.svn_node_file: