mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Code style: Use double quotes for strings
Contributes to issue CURA-2252.
This commit is contained in:
parent
15101ec53d
commit
b7c2a77277
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2015 Ultimaker B.V.
|
# Copyright (c) 2016 Ultimaker B.V.
|
||||||
# Cura is released under the terms of the AGPLv3 or higher.
|
# Cura is released under the terms of the AGPLv3 or higher.
|
||||||
import configparser
|
import configparser
|
||||||
|
|
||||||
|
@ -53,10 +53,10 @@ class CuraProfileReader(ProfileReader):
|
||||||
parser.read_string(serialized)
|
parser.read_string(serialized)
|
||||||
|
|
||||||
if not "general" in parser:
|
if not "general" in parser:
|
||||||
Logger.log('w', "Missing required section 'general'.")
|
Logger.log("w", "Missing required section 'general'.")
|
||||||
return None
|
return None
|
||||||
if not "version" in parser["general"]:
|
if not "version" in parser["general"]:
|
||||||
Logger.log('w', "Missing required 'version' property")
|
Logger.log("w", "Missing required 'version' property")
|
||||||
return None
|
return None
|
||||||
|
|
||||||
version = int(parser["general"]["version"])
|
version = int(parser["general"]["version"])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue