Take care of some pesky whitespace issues
[mw] / src / mw / clicommands.py
index 95d1fe804ceb571429759ce672b10c0c3e429353..e44f0d8b639501a794885cccdf0e2209b63f9131 100644 (file)
@@ -138,3 +138,9 @@ class DiffCommand(CommandBase):
 
     def _do_command(self):
         self._die_if_no_init()
+        status = self.metadir.working_dir_status()
+        for file in status:
+            if status[file] == 'U':
+                print self.metadir.diff_rv_to_working(
+                    mw.api.filename_to_pagename(file[:-5])
+                ),

Benjamin Mako Hill || Want to submit a patch?