Fix pep8 failures
[integration/test.git] / tools / distchanges / changes.py
index d497301bb7d0bb0ea79ae2a3a562b418f4e3eccb..3fcafb88fa07f7d12c31b0a6363bc3e5093bbbb3 100644 (file)
@@ -269,7 +269,7 @@ class Changes(object):
         if msg:
             lines = str(msg.group()).split("\\n")
             cli = next((i for i, line in enumerate(lines[:-1]) if '* changes\\:' in line), None)
-            first_msg = lines[cli+1] if cli else None
+            first_msg = lines[cli + 1] if cli else None
         if first_msg:
             if self.verbose >= 1:
                 print("did not find Change-Id or commit-msg in %s, trying with merge commit-msg: %s"