Skip to content

Commit

Permalink
Fixed test urls
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Kaufhold committed Jan 20, 2015
1 parent c056db2 commit ba1cfe4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion booking/tests/urls.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"""URLs to run the tests."""
from django.conf.urls.defaults import patterns, include, url
try:
from django.conf.urls import patterns, include, url
except ImportError: # Pre-Django 1.4 version
from django.conf.urls.defaults import patterns, include, url
from django.contrib import admin


Expand Down

0 comments on commit ba1cfe4

Please sign in to comment.