PEP8: fix E261: at least two spaces before inline comment
[sfrench/samba-autobuild/.git] / python / samba / samba3 / __init__.py
index 950b3c28479f4914e250b0583baad8dcdce057ab..283185aa823363061d27c787d47cb321c7137806 100644 (file)
@@ -324,7 +324,7 @@ class WinsDatabase(object):
         f = open(file, 'r')
         assert f.readline().rstrip("\n") == "VERSION 1 0"
         for l in f.readlines():
-            if l[0] == "#": # skip comments
+            if l[0] == "#":  # skip comments
                 continue
             entries = shellsplit(l.rstrip("\n"))
             name = entries[0]
@@ -352,7 +352,7 @@ class WinsDatabase(object):
         """Return the entries in this WINS database."""
         return self.entries.items()
 
-    def close(self): # for consistency
+    def close(self):  # for consistency
         pass