Skip to content

Commit

Permalink
Merge branch 'release/0.1.25'
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed May 6, 2019
2 parents cca7392 + 29d62ff commit b1e2144
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 212 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.1.24
0.1.25
2 changes: 1 addition & 1 deletion django_collect_offline_files/admin_site.py
Expand Up @@ -8,7 +8,7 @@
class OfflineFilesAdminSite(AdminSite):
site_header = app_config.verbose_name
site_title = app_config.verbose_name
index_title = app_config.verbose_name + " " + "Admin"
index_title = f"{app_config.verbose_name} Admin"
site_url = "/django_collect_offline_files/"


Expand Down
Expand Up @@ -2,8 +2,8 @@

from django.apps import apps as django_apps
from django.core.management.base import BaseCommand, CommandError
from django_collect_offline_files import ExportedTransactionFileHistory
from django_collect_offline_files import (
from django_collect_offline_files.models import ExportedTransactionFileHistory
from django_collect_offline_files.transaction import (
TransactionExporter,
TransactionFileSender,
TransactionFileSenderError,
Expand Down
195 changes: 0 additions & 195 deletions django_collect_offline_files/settings.py

This file was deleted.

4 changes: 2 additions & 2 deletions django_collect_offline_files/urls.py
Expand Up @@ -7,6 +7,6 @@
app_name = "django_collect_offline_files"

urlpatterns = [
url(r"^admin/", django_collect_offline_files_admin.urls),
url(r"", RedirectView.as_view(url="admin/")),
url("admin/", django_collect_offline_files_admin.urls),
url("", RedirectView.as_view(url="admin/")),
]
11 changes: 0 additions & 11 deletions manage.py

This file was deleted.

0 comments on commit b1e2144

Please sign in to comment.