Opened 11 years ago

Last modified 11 years ago

#22616 closed Uncategorized

CommandError exception no prints message - instead always is "django.core.management.base.CommandError" — at Version 2

Reported by: Cezary.Wagner Owned by: nobody
Component: Uncategorized Version: 1.6
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Tim Graham)

Example on useless message for makemessages.py

            if errors:
                if status != STATUS_OK:
                    raise CommandError(
                        "errors happened while running msgmerge\n%s" % errors)

This always gives:
django.core.management.base.CommandError

Should:
"errors happened while running msgmerge\n%s" % errors

Change History (2)

comment:1 by Cezary.Wagner, 11 years ago

Fix exception to produce message.

comment:2 by Tim Graham, 11 years ago

Description: modified (diff)

It works for me:

$ python manage.py runserver a b
CommandError: Usage is runserver [optional port number, or ipaddr:port]

Can you paste your actual terminal output? Also please use formatting on code blocks; I've added some to the description, thanks.

Note: See TracTickets for help on using tickets.
Back to Top