From a940f0a753bea65b35fed6396a1929f1b0ab0154 Mon Sep 17 00:00:00 2001 From: Martin Michalec Date: Thu, 3 Jun 2021 09:29:47 +0200 Subject: [PATCH] Fix and improve _utils import --- django_etebase/admin-cli/management/commands/user-create.py | 2 +- django_etebase/admin-cli/management/commands/user-modify.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/django_etebase/admin-cli/management/commands/user-create.py b/django_etebase/admin-cli/management/commands/user-create.py index 8e0a730..b1a345b 100755 --- a/django_etebase/admin-cli/management/commands/user-create.py +++ b/django_etebase/admin-cli/management/commands/user-create.py @@ -1,5 +1,5 @@ from django.core.management.base import BaseCommand -from django_etebase.users.management.commands._utils import argbool, argdate +from ._utils import argbool, argdate from myauth.models import User from django.contrib.auth.models import Group, Permission from django.db.utils import IntegrityError diff --git a/django_etebase/admin-cli/management/commands/user-modify.py b/django_etebase/admin-cli/management/commands/user-modify.py index bf39e68..8543eb3 100755 --- a/django_etebase/admin-cli/management/commands/user-modify.py +++ b/django_etebase/admin-cli/management/commands/user-modify.py @@ -1,5 +1,5 @@ from django.core.management.base import BaseCommand -from django_etebase.users.management.commands._utils import argbool, argdate +from ._utils import argbool, argdate from myauth.models import User from django.contrib.auth.models import Group, Permission from django.db.utils import IntegrityError