Skip to content

Commit 81f4364

Browse files
committed
Fixed hashbangs -- thanks @Pilifer!
1 parent 6b358d2 commit 81f4364

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

pythonanywhere/snakesay.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python3.6
1+
#!/usr/bin/env python3.5
22
import sys
33
import textwrap
44

scripts/pa_autoconfigure_django.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python3.6
1+
#!/usr/bin/python3.5
22
"""Autoconfigure a Django project from on a github URL.
33
44
- downloads the repo

scripts/pa_create_webapp_with_virtualenv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python3.6
1+
#!/usr/bin/python3.5
22
"""Create a web app with a virtualenv
33
44
- creates a simple hello world web app

scripts/pa_install_webapp_letsencrypt_ssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python3.6
1+
#!/usr/bin/python3.5
22
"""Set the HTTPS certificate and private key for a website, assuming that these have been generated by the dehydrated
33
script that gets them from Let's Encrypt, and that they're in the standard place. This script should normally only
44
be run on PythonAnywhere.

scripts/pa_install_webapp_ssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python3.6
1+
#!/usr/bin/python3.5
22
"""Set the HTTPS certificate and private key for a website to the contents of two files, and reload the site.
33
44
Usage:

scripts/pa_start_django_webapp_with_virtualenv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python3.6
1+
#!/usr/bin/python3.5
22
"""Create a new Django webapp with a virtualenv. Defaults to
33
your free domain, the latest version of Django and Python 3.6
44

0 commit comments

Comments
 (0)