diff --git a/django/core/management/commands/loaddata.py b/django/core/management/commands/loaddata.py
index af108e0..c45f8c1 100644
--- a/django/core/management/commands/loaddata.py
+++ b/django/core/management/commands/loaddata.py
@@ -95,7 +95,7 @@ class Command(BaseCommand):
         try:
             connection.check_constraints(table_names=table_names)
         except Exception as e:
-            e.args = ("Problem installing fixtures: %s" % e,)
+            e.args = ("Problem installing fixtures: %s" % force_text(e),)
             raise
 
         # If we found even one object in a fixture, we need to reset the
