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

update wicd-cli calls to work with the current daemon

This commit is contained in:
Adam Blackburn
2010-01-03 22:04:03 -10:00
parent e757b2debd
commit c1dbf23373

View File

@@ -78,14 +78,14 @@ def is_valid_wireless_network_id(network_id):
sys.exit(1)
def is_valid_wired_network_id(network_id):
num = len(config.GetWiredProfileList())
num = len(wired.GetWiredProfileList())
if not (network_id < num and \
network_id >= 0):
print 'Invalid wired network identifier.'
sys.exit(4)
def is_valid_wired_network_profile(profile_name):
if not profile_name in config.GetWiredProfileList():
if not profile_name in wired.GetWiredProfileList():
print 'Profile of that name does not exist.'
sys.exit(5)
@@ -110,7 +110,7 @@ if options.list_networks:
elif options.wired:
print '#\tProfile name'
id = 0
for profile in config.GetWiredProfileList():
for profile in wired.GetWiredProfileList():
print '%s\t%s' % (id, profile)
id += 1
op_performed = True