app/django/bin/compile-messages.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sun, 05 Jul 2009 13:31:34 +0200
changeset 2549 1ad10bf1d935
parent 323 ff1a9aa48cfd
permissions -rwxr-xr-x
Changed the filter for getting a SurveyRecord for a ProjectSurvey ProjectSurveyRecords are characterized by the Survey and a Project entity. The user property is just there to state who last submitted the Survey.

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