summaryrefslogtreecommitdiff
path: root/django/apps/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/apps/config.py')
-rw-r--r--django/apps/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/apps/config.py b/django/apps/config.py
index f5c971fc9c..2728503d62 100644
--- a/django/apps/config.py
+++ b/django/apps/config.py
@@ -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