1 diff --git a/cupshelpers/config.py.in b/cupshelpers/config.py.in
2 index 55abbfc..1244327 100644
3 --- a/cupshelpers/config.py.in
4 +++ b/cupshelpers/config.py.in
7 sysconfdir="@sysconfdir@"
8 cupsserverbindir="@cupsserverbindir@"
11 + with open("/etc/cups/cups-files.conf") as config:
12 + for cfgline in config:
13 + args = cfgline.split(" ")
14 + if len(args) == 2 and args[0] == "ServerBin":
15 + cupsserverbindir = args[1].strip()