app/django/bin/compile-messages.py
author Augie Fackler <durin42@gmail.com>
Tue, 03 Mar 2009 03:37:16 +0000
changeset 1599 b56976cac36b
parent 323 ff1a9aa48cfd
permissions -rwxr-xr-x
Add myself to authors on this file, and allow my whitespace cleanup hook to cleanup whitespace. Patch by: Augie Fackler

#!/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)