From 2846ee256b11ec3e577fab35f0c063e6428951b3 Mon Sep 17 00:00:00 2001 From: Christopher Rosell Date: Thu, 23 Aug 2012 23:37:37 +0200 Subject: Change location of livestreamerrc on Windows. --- src/livestreamer/cli.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') 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)) -- cgit v1.2.3