Skip to content

Commit

Permalink
Merge pull request #4 from makingspace/django2-compatibility
Browse files Browse the repository at this point in the history
Django2 import changes
  • Loading branch information
aibin committed Feb 23, 2019
2 parents d76aa9a + b398d2e commit 5e3c9b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def finalize_options(self):
pass
setup(
name="django-umeboshi",
version="0.4.3",
version="0.4.4",
author="MakeSpace Labs, Inc.",
author_email="zach.smith@makespace.com",
description="Umeboshi is a Django application for durable long-term scheduling of arbitrary actions.",
Expand Down
6 changes: 5 additions & 1 deletion umeboshi/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
import pickle

from django.core.exceptions import ValidationError
from django.core.urlresolvers import reverse
try:
from django.urls import reverse
except ImportError:
from django.core.urlresolvers import reverse

from django.db import models
from django.utils import timezone
from django.utils.timezone import now, timedelta
Expand Down

0 comments on commit 5e3c9b1

Please sign in to comment.