From 467a9f179d98cb6fcbfcb77fdeed8be583385a1e Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 1 Apr 2019 17:30:43 +0200 Subject: [PATCH] Code style: Spaces around binary operators Contributes to issue CURA-6057. --- cura/UI/TextManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/UI/TextManager.py b/cura/UI/TextManager.py index 7d428137f2..86838a0b48 100644 --- a/cura/UI/TextManager.py +++ b/cura/UI/TextManager.py @@ -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()])