Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/hardware/nmclient.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-02-25 20:19:18 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-02-25 20:19:18 (GMT)
commit69b48ade35088d2cceda6904360cb596c1a56b0b (patch)
treed2b5e1779295dfe190ad5bb1c189b31ef0352789 /shell/hardware/nmclient.py
parenta9c4e4b8e5c57519af557a0543aa19a89c8f693c (diff)
s/essid/ssid
Diffstat (limited to 'shell/hardware/nmclient.py')
-rw-r--r--shell/hardware/nmclient.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/hardware/nmclient.py b/shell/hardware/nmclient.py
index e100a1f..a60ba23 100644
--- a/shell/hardware/nmclient.py
+++ b/shell/hardware/nmclient.py
@@ -76,7 +76,7 @@ class Network(gobject.GObject):
gobject.TYPE_NONE, ([])),
'strength-changed': (gobject.SIGNAL_RUN_FIRST,
gobject.TYPE_NONE, ([])),
- 'essid-changed' : (gobject.SIGNAL_RUN_FIRST,
+ 'ssid-changed' : (gobject.SIGNAL_RUN_FIRST,
gobject.TYPE_NONE, ([]))
}
@@ -111,7 +111,7 @@ class Network(gobject.GObject):
self._ssid, self._mode, self._strength))
self.emit('strength-changed')
- self.emit('essid-changed')
+ self.emit('ssid-changed')
def _update_error_cb(self, err):
logging.debug("Net(%s): failed to update. (%s)" % (self._op, err))