diff hgext/convert/subversion.py @ 14232:df2399663392

rename util.set_flags to setflags
author Adrian Buehlmann <adrian@cadifra.com>
date Fri, 06 May 2011 15:22:31 +0200
parents 135e244776f0
children 659f34b833b9
line wrap: on
line diff
--- a/hgext/convert/subversion.py	Fri May 06 15:19:48 2011 +0200
+++ b/hgext/convert/subversion.py	Fri May 06 15:22:31 2011 +0200
@@ -1011,7 +1011,7 @@
             fp = open(hook, 'w')
             fp.write(pre_revprop_change)
             fp.close()
-            util.set_flags(hook, False, True)
+            util.setflags(hook, False, True)
 
         output = self.run0('info')
         self.uuid = self.uuid_re.search(output).group(1).strip()
@@ -1038,7 +1038,7 @@
                 # systematically is just as expensive and much simpler.
                 was_exec = 'x' not in flags
 
-            util.set_flags(self.wjoin(filename), False, 'x' in flags)
+            util.setflags(self.wjoin(filename), False, 'x' in flags)
             if was_exec:
                 if 'x' not in flags:
                     self.delexec.append(filename)