forked from jazzband/django-dbbackup
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix GitHub Actions configuration (jazzband#419)
* Fix GitHub Actions configuration * Remove deprecated import
- Loading branch information
1 parent
c8df2cd
commit 9aab6c9
Showing
2 changed files
with
9 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
try: | ||
from django.conf.urls import patterns, include, url | ||
urlpatterns = patterns( | ||
'', | ||
# url(r'^admin/', include(admin.site.urls)), | ||
) | ||
except ImportError: | ||
from django.conf.urls import include, url | ||
urlpatterns = ( | ||
# url(r'^admin/', include(admin.site.urls)), | ||
) | ||
from django.urls import include, re_path | ||
|
||
urlpatterns = ( | ||
# url(r'^admin/', include(admin.site.urls)), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters