summaryrefslogtreecommitdiff
path: root/django/apps/config.py
diff options
context:
space:
mode:
authorFrançois Freitag <mail@franek.fr>2020-04-25 15:53:30 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-04-27 08:30:16 +0200
commitabea86f9e44a8eda9ad1859fe05a91509bdb8011 (patch)
tree7389b9afd85fdb5c653d38557068d44bc8caa278 /django/apps/config.py
parent687cb38a05414f1e1fe6b255735d998bfc9741b4 (diff)
Removed unnecessary tuple wrapping of single format string argument.
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