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:
authordaid <daid303@gmail.com>2014-12-03 17:40:41 +0300
committerdaid <daid303@gmail.com>2014-12-03 17:40:41 +0300
commitdd1d9c175f4cffe640a67d042a91a22a85897d5c (patch)
treef2008cd157e25edc68f5fb9bf911bf2c41d90750 /Cura/util/profile.py
parent3cdda7c39b737ca85cd58d034583a0ab395779c9 (diff)
Improve stats posting. Update versio number to RC914.12-RC9
Diffstat (limited to 'Cura/util/profile.py')
-rw-r--r--Cura/util/profile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cura/util/profile.py b/Cura/util/profile.py
index a27e7f3095..1c29a0d876 100644
--- a/Cura/util/profile.py
+++ b/Cura/util/profile.py
@@ -819,7 +819,7 @@ def getPreferencesString():
p = []
global settingsList
for set in settingsList:
- if set.isPreference():
+ if (set.isPreference() and set.getName() != 'lastFile' and set.getName() != 'youmagine_token') or set.isMachineSetting():
p.append(set.getName() + "=" + set.getValue().encode('utf-8'))
ret = '\b'.join(p)
ret = base64.b64encode(zlib.compress(ret, 9))