app/django/bin/compile-messages.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 06 Dec 2008 21:05:17 +0000
changeset 688 125cad9596da
parent 323 ff1a9aa48cfd
permissions -rwxr-xr-x
Changed generic_name to group_label in models/program.py. Also I've updated the comments and help text to explain the meaning of this field. Patch by: Lennard de Rijk

#!/usr/bin/env python

if __name__ == "__main__":
    import sys
    name = sys.argv[0]
    args = ' '.join(sys.argv[1:])
    print >> sys.stderr, "%s has been moved into django-admin.py" % name
    print >> sys.stderr, 'Please run "django-admin.py compilemessages %s" instead.'% args
    print >> sys.stderr
    sys.exit(1)