X-Git-Url: https://projects.mako.cc/source/mw/blobdiff_plain/e0123b0e3e4be7c79d8c9e6d770c0a133a73e75f..6ef083635c4bf8eb46d29de59501da90fe34b994:/src/mw/metadir.py diff --git a/src/mw/metadir.py b/src/mw/metadir.py index 06b428d..bf1595a 100644 --- a/src/mw/metadir.py +++ b/src/mw/metadir.py @@ -1,6 +1,6 @@ ### # mw - VCS-like nonsense for MediaWiki websites -# Copyright (C) 2011 Ian Weller and others +# Copyright (C) 2010 Ian Weller # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -167,7 +167,9 @@ class Metadir(object): if (len(cur_content) != 0) and (cur_content[-1] == '\n'): cur_content = cur_content[:-1] if cur_content != rv['content']: - status[os.path.relpath(full, self.root)] = 'M' + status[os.path.relpath(full, self.root)] = 'M' # modified + else: + status[os.path.relpath(full, self.root)] = 'C' # clean return status def diff_rv_to_working(self, pagename, oldrvid=0, newrvid=0):