This commit is contained in:
Konsta Vesterinen
2013-10-24 08:46:56 +03:00
parent eb1582bdfc
commit 5cc685c21d
2 changed files with 3 additions and 3 deletions

View File

@@ -8,6 +8,7 @@ Here you can see the full list of changes between each SQLAlchemy-Utils release.
^^^^^^^^^^^^^^^^^^^
- Removed compat module, added total_ordering package to Python 2.6 requirements
- Enhanced render_statement function
0.17.0 (2013-10-23)

View File

@@ -1,14 +1,13 @@
import six
ip_address = None
try:
from ipaddress import ip_address
except ImportError:
try:
from ipaddr import IPAddress as ip_address
except ImportError:
ip_address = None
pass
from sqlalchemy import types