diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-07-30 17:20:20 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-07-30 18:05:31 +0200 |
commit | 3510e8f5faa69451e5c3673bac15fe79b73ecca1 (patch) | |
tree | fb200d9f972075f1ea087c073fe4037716c156c0 /src/config.py | |
parent | b0accad5c0e21a2fcec329af5169f000e7c51e7f (diff) | |
download | poezio-3510e8f5faa69451e5c3673bac15fe79b73ecca1.tar.gz poezio-3510e8f5faa69451e5c3673bac15fe79b73ecca1.tar.bz2 poezio-3510e8f5faa69451e5c3673bac15fe79b73ecca1.tar.xz poezio-3510e8f5faa69451e5c3673bac15fe79b73ecca1.zip |
Minor fix of a function signature
Diffstat (limited to 'src/config.py')
-rw-r--r-- | src/config.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/config.py b/src/config.py index 9b45da54..f40f8742 100644 --- a/src/config.py +++ b/src/config.py @@ -65,9 +65,8 @@ class Config(RawConfigParser): return default return res - def get_by_tabname( - self, option, default, tabname, - fallback=True, fallback_server=True): + def get_by_tabname(self, option, default, tabname, fallback=True, + fallback_server=True): """ Try to get the value for the option. First we look in a section named `tabname`, if the option is not present |