Kaydet (Commit) 4cffa9a1 authored tarafından Chris Lamb's avatar Chris Lamb Kaydeden (comit) Tim Graham

Fixed #27878, refs #23919 -- Used python3 shebangs.

üst eb97af04
#!/usr/bin/env python #!/usr/bin/env python3
from django.core import management from django.core import management
if __name__ == "__main__": if __name__ == "__main__":
......
#!/usr/bin/env python #!/usr/bin/env python3
import os import os
import sys import sys
......
#!/usr/bin/env python #!/usr/bin/env python3
import argparse import argparse
import os import os
import subprocess import subprocess
......
...@@ -333,7 +333,7 @@ Let's take a look inside a couple of those files: ...@@ -333,7 +333,7 @@ Let's take a look inside a couple of those files:
.. snippet:: .. snippet::
:filename: runtests.py :filename: runtests.py
#!/usr/bin/env python #!/usr/bin/env python3
import os import os
import sys import sys
......
#!/usr/bin/env python #!/usr/bin/env python3
# #
# This python file contains utility scripts to manage Django translations. # This python file contains utility scripts to manage Django translations.
# It has to be run inside the django git root directory. # It has to be run inside the django git root directory.
......
#!/usr/bin/env python #!/usr/bin/env python3
import os import os
import sys import sys
......
#!/usr/bin/env python #!/usr/bin/env python3
""" """
Helper script to update sampleproject's translation catalogs. Helper script to update sampleproject's translation catalogs.
......
#!/usr/bin/env python #!/usr/bin/env python3
import argparse import argparse
import atexit import atexit
import copy import copy
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment