Skip to content

Commit 714f0ff

Browse files
committed
Bugfix: AccessPoint.postprocess was losing data
1 parent 3baa8f2 commit 714f0ff

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

NetworkManager.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,7 @@ class AccessPoint(NMDbusInterface):
219219
def postprocess(self, name, val):
220220
if name == 'Ssid':
221221
return fixups.ssid_to_python(val)
222+
return val
222223

223224
class Wired(NMDbusInterface):
224225
interface_name = 'org.freedesktop.NetworkManager.Device.Wired'

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# The short X.Y version.
5151
version = '0.9'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.9.6'
53+
release = '0.9.8'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from distutils.core import setup
44

55
setup(name = "python-networkmanager",
6-
version = "0.9.7",
6+
version = "0.9.8",
77
author = "Dennis Kaarsemaker",
88
author_email = "dennis@kaarsemaker.net",
99
url = "http://github.com/seveas/python-networkmanager",

0 commit comments

Comments
 (0)