hgext/convert/convcmd.py
changeset 7877 eba7f12b0c51
parent 7873 4a4c7f6a5912
child 7948 de377b1a9a84
--- 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')