Skip to content

Commit

Permalink
Merge branch 'artscoop-patch-1'
Browse files Browse the repository at this point in the history
  • Loading branch information
streeter committed Mar 2, 2015
2 parents 2f8b9a8 + cc42a1c commit 171e795
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion readonly/__init__.py
Expand Up @@ -10,8 +10,14 @@

from time import time

import django
from django.conf import settings
from django.db.backends import util

if django.VERSION < (1, 7):
from django.db.backends import util
else:
from django.db.backends import utils as util

from django.utils.log import getLogger
from .exceptions import DatabaseWriteDenied

Expand Down

0 comments on commit 171e795

Please sign in to comment.