arteria / django-compat

Forward and backwards compatibility layer for Django 1.4, 1.7, 1.8, 1.9, 1.10, and 1.11
MIT License
106 stars 30 forks source link

close_connection removed in 1.8 #39

Closed philippeowagner closed 8 years ago

philippeowagner commented 9 years ago
try:
    from django.db import close_old_connections as close_connection    
except ImportError:
    from django.db import close_connection # old Django version < 1.8

Private note: