In addition to a page name, permit pull to take a file (from tab completion), or...
[mw] / src / mw / metadir.py
index 6c3dc8b0e4c299868d52864ab15f0d77dea5f97e..bf1595a46744f4ca127aa2bf000b7f80cdbfe4ef 100644 (file)
@@ -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):

Benjamin Mako Hill || Want to submit a patch?