aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/livestreamer/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/livestreamer/cli.py')
-rw-r--r--src/livestreamer/cli.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/livestreamer/cli.py b/src/livestreamer/cli.py
index b6a4b94..e04f545 100644
--- a/src/livestreamer/cli.py
+++ b/src/livestreamer/cli.py
@@ -65,7 +65,10 @@ pluginopt.add_argument("-r", "--rtmpdump", metavar="path",
pluginopt.add_argument("-j", "--jtv-cookie", metavar="cookie",
help="Specify JustinTV cookie to allow access to subscription channels")
-RCFILE = os.path.expanduser("~/.livestreamerrc")
+if is_win32:
+ RCFILE = os.path.join(os.environ["APPDATA"], "livestreamer", "livestreamerrc")
+else:
+ RCFILE = os.path.expanduser("~/.livestreamerrc")
def exit(msg):
sys.exit(("error: {0}").format(msg))