Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed #1369 -- Changed shebang lines in unique-messages.py, compile-m…
…essages.py and make-message.py to use /usr/bin/env

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2352 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Feb 18, 2006
1 parent 4d1bb30 commit 72a83f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion django/bin/compile-messages.py
@@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python


import os import os
import sys import sys
Expand Down
2 changes: 1 addition & 1 deletion django/bin/make-messages.py
@@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python


from django.utils.translation import templatize from django.utils.translation import templatize
import re import re
Expand Down
2 changes: 1 addition & 1 deletion django/bin/unique-messages.py
@@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python


import os import os
import sys import sys
Expand Down

0 comments on commit 72a83f8

Please sign in to comment.