From: Justin Pettit Date: Tue, 24 Nov 2009 01:24:58 +0000 (-0800) Subject: ovsdb-idlc: Remove "sha" deprecation warning X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fffa8db5e819cebfa7529b4d3d240802bf0181ba;p=openvswitch 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 2cde35e3..681cba5d 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")