X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=python%2Fovs%2Futil.py;h=aa4b9bc3dadb125bf5942b4265ae85cca029d564;hb=db5b4525b20e0fd6a079831638b5eb3f9fb131f2;hp=d4460f39a0df2b7b73bcd42c3841240a9d6afc03;hpb=991559357f6a03c3a5b70c053c8c2554aa8d5ee4;p=sliver-openvswitch.git diff --git a/python/ovs/util.py b/python/ovs/util.py index d4460f39a..aa4b9bc3d 100644 --- a/python/ovs/util.py +++ b/python/ovs/util.py @@ -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. @@ -13,10 +13,10 @@ # 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'.