--- a/hgext/convert/convcmd.py Mon Mar 23 13:13:11 2009 +0100
+++ b/hgext/convert/convcmd.py Mon Mar 23 13:13:27 2009 +0100
@@ -188,11 +188,11 @@
def writeauthormap(self):
authorfile = self.authorfile
if authorfile:
- self.ui.status(_('Writing author map file %s\n') % authorfile)
- ofile = open(authorfile, 'w+')
- for author in self.authors:
- ofile.write("%s=%s\n" % (author, self.authors[author]))
- ofile.close()
+ self.ui.status(_('Writing author map file %s\n') % authorfile)
+ ofile = open(authorfile, 'w+')
+ for author in self.authors:
+ ofile.write("%s=%s\n" % (author, self.authors[author]))
+ ofile.close()
def readauthormap(self, authorfile):
afile = open(authorfile, 'r')