aboutsummaryrefslogtreecommitdiff
path: root/cli/onionshare_cli/mode_settings.py
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2020-11-01 11:50:11 -0800
committerMicah Lee <micah@micahflee.com>2020-11-01 11:50:11 -0800
commita801f0a6286989d461bcca610a1f95de2015073c (patch)
tree673c8c626308a1da4ff181fad114568e886885cf /cli/onionshare_cli/mode_settings.py
parent790fe245e34a249442dce9f166c1f9fd19ff41c7 (diff)
downloadonionshare-a801f0a6286989d461bcca610a1f95de2015073c.tar.gz
onionshare-a801f0a6286989d461bcca610a1f95de2015073c.zip
Install new dependencies so CircleCI tests run, and fix a pytest warning
Diffstat (limited to 'cli/onionshare_cli/mode_settings.py')
-rw-r--r--cli/onionshare_cli/mode_settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/onionshare_cli/mode_settings.py b/cli/onionshare_cli/mode_settings.py
index b353fcde..4e3a27ab 100644
--- a/cli/onionshare_cli/mode_settings.py
+++ b/cli/onionshare_cli/mode_settings.py
@@ -102,7 +102,7 @@ class ModeSettings:
elif self.common.platform == "Windows":
# On Windows, os.path.expanduser() needs to use backslash, or else it
# retains the forward slash, which breaks opening the folder in explorer.
- return os.path.expanduser("~\OnionShare")
+ return os.path.expanduser("~\\OnionShare")
else:
# All other OSes
return os.path.expanduser("~/OnionShare")