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:
authorGhostkeeper <rubend@tutanota.com>2018-06-06 10:57:44 +0300
committerGhostkeeper <rubend@tutanota.com>2018-06-06 10:57:44 +0300
commite152fd641bee0558275afbce2acba7ae397c9519 (patch)
treea076ac8590c43b3681251228e8b901cdddefd398 /cura_app.py
parent4652c3be0f32927e6a7755f42cc8edd63ab8d389 (diff)
Remove trailing slash in Windows configuration path
It shouldn't matter, but we're getting crash reports from this path so let's try this.
Diffstat (limited to 'cura_app.py')
-rwxr-xr-xcura_app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cura_app.py b/cura_app.py
index 8a04b8fe09..d540c8a8c4 100755
--- a/cura_app.py
+++ b/cura_app.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
-# Copyright (c) 2015 Ultimaker B.V.
+# Copyright (c) 2018 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
import argparse
@@ -27,7 +27,7 @@ known_args = vars(parser.parse_known_args()[0])
if not known_args["debug"]:
def get_cura_dir_path():
if Platform.isWindows():
- return os.path.expanduser("~/AppData/Roaming/cura/")
+ return os.path.expanduser("~/AppData/Roaming/cura")
elif Platform.isLinux():
return os.path.expanduser("~/.local/share/cura")
elif Platform.isOSX():