mirror of
https://github.com/django/django.git
synced 2025-10-11 07:49:35 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7853 bcc190cf-cafb-0310-a4f2-bffc1f526a37
12 lines
323 B
Python
Executable File
12 lines
323 B
Python
Executable File
#!/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 makemessages %s" instead.'% args
|
|
print >> sys.stderr
|
|
sys.exit(1)
|
|
|