summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
Diffstat (limited to 'django')
-rw-r--r--django/core/management/commands/dbshell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/dbshell.py b/django/core/management/commands/dbshell.py
index 30d2765afb..bdb130594f 100644
--- a/django/core/management/commands/dbshell.py
+++ b/django/core/management/commands/dbshell.py
@@ -41,7 +41,7 @@ class Command(BaseCommand):
raise CommandError(
'"%s" returned non-zero exit status %s.'
% (
- " ".join(e.cmd),
+ " ".join(map(str, e.cmd)),
e.returncode,
),
returncode=e.returncode,