Browse Source

GCodeProfileReader: Removing useless containername

Thomas Karl Pietrowski 8 years ago
parent
commit
688accfab7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      plugins/GCodeProfileReader/GCodeProfileReader.py

+ 2 - 2
plugins/GCodeProfileReader/GCodeProfileReader.py

@@ -74,7 +74,7 @@ class GCodeProfileReader(ProfileReader):
         Logger.log("i", "Serialized the following from %s: %s" %(file_name, repr(serialized)))
 
         # Create an empty profile - the id will be changed later
-        profile = InstanceContainer("G-code-imported-profile")
+        profile = InstanceContainer("")
         profile.addMetaDataEntry("type", "quality")
         try:
             profile.deserialize(serialized)
@@ -87,4 +87,4 @@ class GCodeProfileReader(ProfileReader):
         profile.setName(new_name)
         profile._id = new_name
         
-        return profile
+        return profile