mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 10:47:49 -06:00
Code style: Spaces around binary operators
Contributes to issue CURA-6057.
This commit is contained in:
parent
52589ffcad
commit
467a9f179d
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ class TextManager(QObject):
|
||||||
|
|
||||||
# Format changelog text
|
# Format changelog text
|
||||||
content = ""
|
content = ""
|
||||||
for version in sorted(change_logs_dict.keys(), reverse=True):
|
for version in sorted(change_logs_dict.keys(), reverse = True):
|
||||||
text_version = version
|
text_version = version
|
||||||
if version < Version([1, 0, 0]): # Bit of a hack: We released the 15.x.x versions before 2.x
|
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()])
|
text_version = Version([15, version.getMinor(), version.getRevision(), version.getPostfixVersion()])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue