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:
authordaid303 <daid303@gmail.com>2012-12-10 13:09:55 +0400
committerdaid303 <daid303@gmail.com>2012-12-10 13:09:55 +0400
commit98ef38eb46fd59b1ed721a798b364201e58ad0e1 (patch)
treea6b4a62ea80ebaa2ef2743fb128f8e879b594d95 /scripts
parent7376c44b852f0eb3fa982cf1dd33c24691350466 (diff)
Fix encoding bug when using locals with none-ascii chars in it.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/linux/cura.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/linux/cura.sh b/scripts/linux/cura.sh
index 53c16d0df5..05f00075b1 100755
--- a/scripts/linux/cura.sh
+++ b/scripts/linux/cura.sh
@@ -20,5 +20,5 @@ if [ $? != 0 ]; then
fi
SCRIPT_DIR=`dirname $0`
-python ${SCRIPT_DIR}/Cura/cura.py $@
-
+cd $SCRIPT_DIR
+python -m Cura.cura $@