From e97577d16dc166e8d877c7385917fc96a034e917 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 27 Apr 2013 23:47:46 +0200 Subject: [PATCH] main: Remove /etc/mopidy/mopidy.conf from default config file list Init scripts can use the --config option to specify that the file should be included. --- mopidy/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy/__main__.py b/mopidy/__main__.py index cb9e2df8..aba68fec 100644 --- a/mopidy/__main__.py +++ b/mopidy/__main__.py @@ -162,7 +162,7 @@ def parse_options(): parser.add_option( b'--config', action='store', dest='config', - default=b'/etc/mopidy/mopidy.conf:$XDG_CONFIG_DIR/mopidy/mopidy.conf', + default=b'$XDG_CONFIG_DIR/mopidy/mopidy.conf', help='config files to use, colon seperated, later files override') parser.add_option( b'-o', b'--option',