wok-next view wicd/stuff/patches/dbus_string_fix.patch @ rev 21129
Up tk (8.6.9.1), python, talloc (2.1.15)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Jan 18 15:42:45 2019 +0200 (2019-01-18) |
parents | 662b600e1688 |
children |
line source
1 === modified file 'wicd/misc.py'
2 --- wicd/misc.py 2012-04-30 19:20:47 +0000
3 +++ wicd/misc.py 2012-05-03 16:01:49 +0000
4 @@ -430,7 +430,10 @@
5 """ Sanitize property names to be used in config-files. """
6 allowed = string.ascii_letters + '_' + string.digits
7 table = string.maketrans(allowed, ' ' * len(allowed))
8 - return s.translate(None, table)
9 +
10 + # s is a dbus.String -- since we don't allow unicode property keys,
11 + # make it simple.
12 + return str(s).translate(None, table)
14 def sanitize_escaped(s):
15 """ Sanitize double-escaped unicode strings. """