1
0
mirror of https://github.com/django/django.git synced 2025-10-27 23:56:08 +00:00

Removed unnecessary tuple wrapping of single format string argument.

This commit is contained in:
François Freitag
2020-04-25 15:53:30 +02:00
committed by Mariusz Felisiak
parent 687cb38a05
commit abea86f9e4
12 changed files with 15 additions and 15 deletions

View File

@@ -75,7 +75,7 @@ class AppConfig:
raise ImproperlyConfigured(
"The app module %r has no filesystem location, "
"you must configure this app with an AppConfig subclass "
"with a 'path' class attribute." % (module,))
"with a 'path' class attribute." % module)
return paths[0]
@classmethod