Code style: Spaces around binary operators

Contributes to issue CURA-6057.
This commit is contained in:
Ghostkeeper 2019-04-01 17:30:43 +02:00
parent 52589ffcad
commit 467a9f179d
No known key found for this signature in database
GPG key ID: 86BEF881AE2CF276

View file

@ -53,7 +53,7 @@ class TextManager(QObject):
# Format changelog text
content = ""
for version in sorted(change_logs_dict.keys(), reverse=True):
for version in sorted(change_logs_dict.keys(), reverse = True):
text_version = version
if version < Version([1, 0, 0]): # Bit of a hack: We released the 15.x.x versions before 2.x
text_version = Version([15, version.getMinor(), version.getRevision(), version.getPostfixVersion()])