mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-11 00:37:50 -06:00
Rename import/export functions
They no longer mention the version number in their function names. I'd rather have named them import/export but that gave a name clash with Python's 'import' keyword. Contributes to issue CURA-844.
This commit is contained in:
parent
fdf37c2ab0
commit
f2f993916d
3 changed files with 8 additions and 8 deletions
|
@ -11,7 +11,7 @@ import io #To write config files to strings as if they were files.
|
|||
#
|
||||
# \param serialised The serialised form of a profile in version 1.
|
||||
# \return A profile instance, or None if the file format is incorrect.
|
||||
def importVersion1(serialised):
|
||||
def importFrom(serialised):
|
||||
try:
|
||||
return Profile(serialised)
|
||||
except (configparser.Error, SettingsError.InvalidFormatError, SettingsError.InvalidVersionError):
|
||||
|
@ -72,7 +72,7 @@ class Profile:
|
|||
#
|
||||
# \return A serialised form of this profile, serialised in version 2 of
|
||||
# the file format.
|
||||
def exportVersion2(self):
|
||||
def exportTo(self):
|
||||
import VersionUpgrade21to22 # Import here to prevent circular dependencies.
|
||||
config = configparser.ConfigParser(interpolation = None)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue