remove python 2.5 support for parse_sql
Bug #1243418 reported by
Kui Shi
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
python-heatclient |
Fix Released
|
Low
|
Kui Shi |
Bug Description
Python 2.5 is not supported anymore, remove the obsolete code in heatclient/
Changed in python-heatclient: | |
milestone: | none → v0.2.6 |
Changed in python-heatclient: | |
status: | Fix Committed → Fix Released |
To post a comment you must log in.
diff --git a/heatclient/ common/ http.py b/heatclient/ common/ http.py common/ http.py common/ http.py
index c9fa89c..2b18c07 100644
--- a/heatclient/
+++ b/heatclient/
@@ -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