diff --git a/lms/djangoapps/django_comment_client/management/commands/reload_forum_users.py b/lms/djangoapps/django_comment_client/management/commands/reload_forum_users.py index 81154da69a..53c6aaf2b2 100644 --- a/lms/djangoapps/django_comment_client/management/commands/reload_forum_users.py +++ b/lms/djangoapps/django_comment_client/management/commands/reload_forum_users.py @@ -16,7 +16,7 @@ class Command(BaseCommand): cc_user = cc.User.from_django_user(user) cc_user.save() except Exception as err: - print "update user info to discussion failed for user with id: %s" % user + print "update user info to discussion failed for user with id: %s, error=%s" % (user, str(err)) def handle(self, *args, **options): if len(args) != 0: