mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
Fix self parameter
It must have access to self to get the values to store in the file. Contributes to issue CURA-844.
This commit is contained in:
parent
149e873eb6
commit
17f4703337
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ class Profile:
|
|||
#
|
||||
# \return A serialised form of this profile, serialised in version 2 of
|
||||
# the file format.
|
||||
def exportVersion2():
|
||||
def exportVersion2(self):
|
||||
config = configparser.ConfigParser(interpolation = None)
|
||||
|
||||
config.add_section("general")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue