From ce4e9c7096be1222592700cdad84cf35895159da Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Tue, 1 Jul 2014 20:14:23 +0200 Subject: [PATCH] pwclient: rename variable CONFIG_FILES to be singular We only support a single config file, so there is no need to have a plural in this variable. Also, we'll need to know what the default config file is, when we want to save it to migrate to the new format. Signed-off-by: "Yann E. MORIN" Signed-off-by: Jeremy Kerr --- apps/patchwork/bin/pwclient | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/patchwork/bin/pwclient b/apps/patchwork/bin/pwclient index 0c0ccaf..2104f59 100755 --- a/apps/patchwork/bin/pwclient +++ b/apps/patchwork/bin/pwclient @@ -34,7 +34,7 @@ import ConfigParser # for the URL to access. If that is unspecified, it will fallback to # the hardcoded default value specified here. DEFAULT_URL = "http://patchwork/xmlrpc/" -CONFIG_FILES = [os.path.expanduser('~/.pwclientrc')] +CONFIG_FILE = os.path.expanduser('~/.pwclientrc') class Filter: """Filter for selecting patches.""" @@ -351,7 +351,7 @@ def main(): url = DEFAULT_URL config = ConfigParser.ConfigParser() - config.read(CONFIG_FILES) + config.read([CONFIG_FILE]) # grab settings from config files if config.has_option('base', 'url'): -- 2.39.2