mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
426 B
Python
22 lines
426 B
Python
|
import configobj, sys
|
||
|
|
||
|
try:
|
||
|
(file, section, key) = sys.argv[1:]
|
||
|
except ValueError:
|
||
|
print "Usage: printconfigsetting.py <file> <section> <setting>"
|
||
|
sys.exit(1)
|
||
|
|
||
|
c = configobj.ConfigObj(file)
|
||
|
|
||
|
try:
|
||
|
s = c[section]
|
||
|
except KeyError:
|
||
|
print >>sys.stderr, "Section [%s] not found." % section
|
||
|
sys.exit(1)
|
||
|
|
||
|
try:
|
||
|
print s[key]
|
||
|
except KeyError:
|
||
|
print >>sys.stderr, "Key %s not found." % key
|
||
|
sys.exit(1)
|