You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
326 B
11 lines
326 B
#!/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) |
|
|
|
|