[PATCH 1/3] pwclient: rename variable CONFIG_FILES to be singular
Yann E. MORIN
yann.morin.1998 at free.fr
Wed Jul 2 04:14:23 EST 2014
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" <yann.morin.1998 at free.fr>
---
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'):
--
1.9.1
More information about the Patchwork
mailing list