Skip to content

Commit

Permalink
Fixing bug mentioned in #2
Browse files Browse the repository at this point in the history
  • Loading branch information
HP41 committed Apr 4, 2018
1 parent 45b008e commit 52a655c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/cups_lpadmin.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ def _printer_get_installed_drivers(self):
kv = l.split('=', 1)

# Strip out any excess whitespace from the key/value
kv = map(str.strip, kv)
kv = tuple(map(str.strip, kv))

curr[kv[0]] = kv[1]

Expand Down

0 comments on commit 52a655c

Please sign in to comment.