From: Yann E. MORIN Date: Tue, 1 Jul 2014 18:14:23 +0000 (+0200) Subject: pwclient: rename variable CONFIG_FILES to be singular X-Git-Url: http://git.ozlabs.org/?a=commitdiff_plain;ds=sidebyside;h=ce4e9c7096be1222592700cdad84cf35895159da;p=patchwork 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 --- 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'):