From: Ben Pfaff Date: Thu, 25 Aug 2011 00:08:24 +0000 (-0700) Subject: ovs.stream: Remove unused parameter from usage(). X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f00acd0bccc883f5b2017dc52f8f1d52a089b1f;p=openvswitch ovs.stream: Remove unused parameter from usage(). This function has no callers. We could delete it entirely, instead. --- diff --git a/python/ovs/stream.py b/python/ovs/stream.py index 82d4557e..003f12b8 100644 --- a/python/ovs/stream.py +++ b/python/ovs/stream.py @@ -300,7 +300,7 @@ class PassiveStream(object): # Don't delete the file: we might have forked. self.socket.close() -def usage(name, active, passive, bootstrap): +def usage(name, active, passive): print if active: print("Active %s connection methods:" % name)