From: Justin Pettit Date: Tue, 24 Nov 2009 01:24:58 +0000 (-0800) Subject: ovsdb-idlc: Remove "sha" deprecation warning X-Git-Tag: v1.0.0~259^2~484 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;ds=sidebyside;h=fffa8db5e819cebfa7529b4d3d240802bf0181ba;p=sliver-openvswitch.git ovsdb-idlc: Remove "sha" deprecation warning The "sha" module was deprecated in Python 2.5 and calling ovsd-idlc prints a warning in Python 2.6. The module is not actually being used, so this just removes the offending import. --- diff --git a/ovsdb/ovsdb-idlc.in b/ovsdb/ovsdb-idlc.in index 2cde35e3a..681cba5da 100755 --- a/ovsdb/ovsdb-idlc.in +++ b/ovsdb/ovsdb-idlc.in @@ -2,7 +2,6 @@ import getopt import re -import sha import sys sys.path.insert(0, "@abs_top_srcdir@/ovsdb")