1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-20 04:48:00 +01:00

Fixed the typo in networking.py correctly this time :)

Corrected the version number displayed in usage()
This commit is contained in:
imdano
2007-08-14 17:02:38 +00:00
parent 2ed0c5cf75
commit bbf32b3b41
2 changed files with 2 additions and 2 deletions

View File

@@ -1075,7 +1075,7 @@ class ConnectionWizard(dbus.service.Object):
def usage(): def usage():
print """ print """
wicd 1.0 wicd 1.33
wireless (and wired) connection daemon. wireless (and wired) connection daemon.
Arguments: Arguments:

View File

@@ -405,7 +405,7 @@ class Wireless:
misc.ParseEncryption(network) misc.ParseEncryption(network)
wpa_string = ("wpa_supplicant -B -i " + wpa_string = ("wpa_supplicant -B -i " +
self.wireless_interface + self.wireless_interface +
" -c " + wpath.networks + "\"" + " -c " + "\"" + wpath.networks +
network["bssid"].replace(":","").lower() + network["bssid"].replace(":","").lower() +
"\" -D " + self.wpa_driver) "\" -D " + self.wpa_driver)
print wpa_string print wpa_string