X-Git-Url: https://projects.mako.cc/source/mw/blobdiff_plain/abc9f97a3b51a1998b73b4e5f937eb67c373b20e..0b6046450eddcd6c63c7edb7d20c8f7b6b48f64b:/src/mw/clicommands.py diff --git a/src/mw/clicommands.py b/src/mw/clicommands.py index 95d1fe8..e44f0d8 100644 --- a/src/mw/clicommands.py +++ b/src/mw/clicommands.py @@ -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]) + ),