Skip to content

Commit

Permalink
Fix ignore_exists signature so that unit test database can be created…
Browse files Browse the repository at this point in the history
…. We can't fake these
  • Loading branch information
olibook committed Nov 9, 2011
1 parent 105c95e commit 3468548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion djcelery/migrations/0001_initial.py
Expand Up @@ -8,7 +8,7 @@
from django.db.utils import DatabaseError


def ignore_exists(self, fun, *args, **kwargs):
def ignore_exists(fun, *args, **kwargs):
try:
fun(*args, **kwargs)
except DatabaseError, exc:
Expand Down

0 comments on commit 3468548

Please sign in to comment.