PEP8: add spaces after operators
[nivanova/samba-autobuild/.git] / python / samba / ms_forest_updates_markdown.py
index efe1654851b0c955d96bb5331bf7fdf20c269cf9..3afe2ecb8387c5c12cc3c939d807df3f17333cf4 100644 (file)
@@ -216,8 +216,8 @@ def read_ms_markdown(in_file, out_folder=None, out_dict={}):
     for node in tree:
         if node.text and node.text.startswith('|Operation'):
             # Strip first and last |
-            updates = [x[1:len(x)-1].split('|') for x in
-                       ET.tostring(node,method='text').splitlines()]
+            updates = [x[1:len(x) - 1].split('|') for x in
+                       ET.tostring(node, method='text').splitlines()]
             for update in updates[2:]:
                 output = re.match('Operation (\d+): {(.*)}', update[0])
                 if output:
@@ -259,6 +259,7 @@ def read_ms_markdown(in_file, out_folder=None, out_dict={}):
 
             # print ET.tostring(node, method='text')
 
+
 if __name__ == '__main__':
     import sys