diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2013-08-23 16:11:52 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2013-08-23 16:11:52 +0200 |
commit | 79b97c9923033d37a464085c12a64ffa9042f010 (patch) | |
tree | 367d87f5bfa60a54e1e93fce771f9d2bc51abd52 | |
parent | eca155380f497871a5aabd3c7b660157c2711bdc (diff) |
oui-update: minor: Fix typo in error message
s/Eror/Error/
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rwxr-xr-x | oui-update.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oui-update.py b/oui-update.py index 52af122..f9e588e 100755 --- a/oui-update.py +++ b/oui-update.py @@ -57,7 +57,7 @@ def main(): assert False, "unhandled option" if not overwrite and os.path.exists(output_file): - print("Eror: output file {} already exists".format(output_file)) + print("Error: output file {} already exists".format(output_file)) sys.exit(-1) print("Updating OUI information in {} from {}... ".format(output_file, oui_url)) |