diff options
author | mathieui <mathieui@mathieui.net> | 2012-04-27 23:09:26 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-04-27 23:09:26 +0200 |
commit | de63a1affdb57f521ab2e7a3e89182c79c1ebe2f (patch) | |
tree | cc983fc5a360cae7e922f2c707b834af20b50cab /src/config.py | |
parent | 2488216fbaa6c4a9b1f264ca455665ae1675a151 (diff) | |
parent | 2a3434b1f81bed7e6c781a9504a87905f2d07948 (diff) | |
download | poezio-de63a1affdb57f521ab2e7a3e89182c79c1ebe2f.tar.gz poezio-de63a1affdb57f521ab2e7a3e89182c79c1ebe2f.tar.bz2 poezio-de63a1affdb57f521ab2e7a3e89182c79c1ebe2f.tar.xz poezio-de63a1affdb57f521ab2e7a3e89182c79c1ebe2f.zip |
Roster update: Merge branch 'master' of https://git.louiz.org/poezio
Conflicts:
src/core.py
src/tabs.py
Diffstat (limited to 'src/config.py')
-rw-r--r-- | src/config.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/config.py b/src/config.py index b4b07491..e99572d7 100644 --- a/src/config.py +++ b/src/config.py @@ -50,6 +50,12 @@ class Config(RawConfigParser): return default return res + def getl(self, option, default, section=DEFSECTION): + """ + get a value and return it lowercase + """ + return self.get(option, default, section).lower() + def get_by_tabname(self, option, default, tabname, fallback=True): """ Try to get the value for the option. First we look in |