]> projects.mako.cc - mw/blobdiff - src/mw/clicommands.py
fixing a bug when a page is blanked
[mw] / src / mw / clicommands.py
index f39cf8d6a670b92b44135cf1943bc7eb98348652..6db3cb800f12c381d0eb539a2a92c4269923ada4 100644 (file)
@@ -65,8 +65,8 @@ class CommandBase(object):
                                     'lgtoken': result['login']['token']})
             if result['login']['result'] == 'Success':
                 print 'Login successful! (yay)'
-    else:
-        print 'Login failed: %s' % result['login']['result']
+            else:
+                print 'Login failed: %s' % result['login']['result']
         else:
             print 'Login failed: %s' % result['login']['result']
 
@@ -232,7 +232,7 @@ class CommitCommand(CommandBase):
                 filename = os.path.join(self.metadir.root, file)
                 text = codecs.open(filename, 'r', 'utf-8').read()
                 text = text.encode('utf-8')
-                if text[-1] == '\n':
+                if (len(text) != 0) and (text[-1] == '\n'):
                     text = text[:-1]
                 md5 = hashlib.md5()
                 md5.update(text)

Benjamin Mako Hill || Want to submit a patch?