ovs-ofctl: Print human readable nx_pull_match() errors.
[sliver-openvswitch.git] / python / ovs / util.py
index d4460f3..aa4b9bc 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2010 Nicira Networks
+# Copyright (c) 2010, 2011 Nicira Networks
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # limitations under the License.
 
 import os
+import os.path
 import sys
 
-_argv0 = sys.argv[0]
-PROGRAM_NAME = _argv0[_argv0.rfind('/') + 1:]
+PROGRAM_NAME = os.path.basename(sys.argv[0])
 
 def abs_file_name(dir, file_name):
     """If 'file_name' starts with '/', returns a copy of 'file_name'.