Skip to content
Snippets Groups Projects
Verified Commit 950b3674 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

fix: f-string is not needed here

parent 952f61ef
No related branches found
No related tags found
No related merge requests found
Pipeline #7981 passed
......@@ -25,7 +25,7 @@ class Command(BaseCommand):
try:
call_command("createsuperuser", "--no-input")
except CommandError:
raise CommandError(f"The application is already initialized.")
raise CommandError("The application is already initialized.")
call_command("collectstatic", "--no-input")
call_command(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment