remove python 2.5 support for parse_sql

Python 2.5 is not supported anymore, remove the obsolete code for parse_sql.

Close-Bug #1243418

Change-Id: Ib87bde26a9b44555a36e3831f6aa33a6b3a4ba21
This commit is contained in:
Kui Shi
2013-10-22 15:46:02 +08:00
parent 6681e72d83
commit c27fc77fe2

View File

@@ -32,11 +32,6 @@ try:
except ImportError:
import simplejson as json
# Python 2.5 compat fix
if not hasattr(urlutils, 'parse_qsl'):
import cgi
urlutils.parse_qsl = cgi.parse_qsl
from heatclient import exc