Fixed usage and error handlind

This commit is contained in:
Tómas Edwardsson 2010-08-11 23:12:35 +00:00
parent 4aa5beab37
commit fc00b12550
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ def readbond( interface ):
# Read interface info # Read interface info
try: try:
bondfh = open (intfile, 'r') bondfh = open (intfile, 'r')
except IOError as (errno, strerror): except IOError, (errno, strerror):
print "Unable to open bond %s: %s" % (intfile, strerror) print "Unable to open bond %s: %s" % (intfile, strerror)
sys.exit(3) sys.exit(3)
except: except:
@ -68,7 +68,7 @@ def readbond( interface ):
return bond return bond
def usage(): def usage():
print "Ble" print "Usage: %s -i bond0" % sys.argv[0]
def main(argv): def main(argv):
# Set variables # Set variables