Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Karl Pietrowski <thopiekar@googlemail.com>2016-09-27 16:39:54 +0300
committerThomas Karl Pietrowski <thopiekar@googlemail.com>2016-09-27 16:39:54 +0300
commitca60e517fa329d8961f5aaf705cd6ec76d83bf7b (patch)
tree4802f5eafba05aa64deb5e763b5c2c4211e27f3b /plugins
parentdb6702fbbc1f077a387b4310370db1065958bada (diff)
Revert "SliceInfo: Defining container_serialized as empty, before trying to serialize"
This reverts commit 1fd169c6697f268588733e7a6d65e80d587b51ab.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/SliceInfoPlugin/SliceInfo.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py
index 51ba7fabf4..bce607c3fc 100644
--- a/plugins/SliceInfoPlugin/SliceInfo.py
+++ b/plugins/SliceInfoPlugin/SliceInfo.py
@@ -109,7 +109,6 @@ class SliceInfo(Extension):
containers = { "": global_container_stack.serialize() }
for container in global_container_stack.getContainers():
container_id = container.getId()
- container_serialized = ""
try:
container_serialized = container.serialize()
except NotImplementedError: