PEP 8 compliance
[mw] / src / mw / metadir.py
index 07043c6ebd005c4310259577a49f7b6fae106e5c..abcd6874d5059244a54a108bf2486b701e04f7a5 100644 (file)
@@ -61,7 +61,7 @@ class Metadir(object):
             os.mkdir(self.location, 0755)
         # metadir versioning
         fd = file(os.path.join(self.location, 'version'), 'w')
             os.mkdir(self.location, 0755)
         # metadir versioning
         fd = file(os.path.join(self.location, 'version'), 'w')
-        fd.write('1') # XXX THIS API VERSION NOT LOCKED IN YET
+        fd.write('1')  # XXX THIS API VERSION NOT LOCKED IN YET
         fd.close()
         # create config
         self.config = ConfigParser.RawConfigParser()
         fd.close()
         # create config
         self.config = ConfigParser.RawConfigParser()

Benjamin Mako Hill || Want to submit a patch?