Minor fix of a function signature
This commit is contained in:
parent
b0accad5c0
commit
3510e8f5fa
1 changed files with 2 additions and 3 deletions
|
@ -65,9 +65,8 @@ class Config(RawConfigParser):
|
||||||
return default
|
return default
|
||||||
return res
|
return res
|
||||||
|
|
||||||
def get_by_tabname(
|
def get_by_tabname(self, option, default, tabname, fallback=True,
|
||||||
self, option, default, tabname,
|
fallback_server=True):
|
||||||
fallback=True, fallback_server=True):
|
|
||||||
"""
|
"""
|
||||||
Try to get the value for the option. First we look in
|
Try to get the value for the option. First we look in
|
||||||
a section named `tabname`, if the option is not present
|
a section named `tabname`, if the option is not present
|
||||||
|
|
Loading…
Reference in a new issue