From 5358b2bd2be755700a80e9a50ebfb4e057c6e3b9 Mon Sep 17 00:00:00 2001 From: Nicolas F Date: Thu, 29 Jun 2017 23:48:19 +0200 Subject: [PATCH] Add proper shebang line to run.py (#275) Without a shebang, the shell tries to interpret the file as a shell script if you issue the ./run.py command; setting chmod +x on the file without a proper shebang is useless. --- run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/run.py b/run.py index 1b131d8..e0d9fa5 100755 --- a/run.py +++ b/run.py @@ -1,2 +1,3 @@ +#!/usr/bin/env python3 from nyaa import app app.run(host='0.0.0.0', port=5500, debug=True)