changeset 165:3b23fe46b1a1

Fixed creation of `.hgignore` file.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 12 Jan 2014 01:18:18 -0800
parents a4a64d6b66cb
children a7aa5c86350e
files wikked/scm/mercurial.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/wikked/scm/mercurial.py	Sun Jan 12 00:24:24 2014 -0800
+++ b/wikked/scm/mercurial.py	Sun Jan 12 01:18:18 2014 -0800
@@ -38,7 +38,7 @@
             logger.info("Creating `.hgignore` file.")
             with open(ignore_path, 'w') as f:
                 f.write('.wiki')
-            self.commit([ignore_path], "Created `.hgignore`.")
+            self.commit([ignore_path], {'message': "Created `.hgignore`."})
 
     def getSpecialFilenames(self):
         return ['.hg*']