From fc74c420d78ec34c61fbffc9755af34f0fda27b1 Mon Sep 17 00:00:00 2001 From: Arthur Poulet Date: Sat, 26 Mar 2016 18:39:42 +0100 Subject: [PATCH 1/3] Fix shebang python2 instead of python --- zeronet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zeronet.py b/zeronet.py index 71661217..d3627a2d 100755 --- a/zeronet.py +++ b/zeronet.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # Included modules import os From a4352814d140304794e33de3fffa0b55dfff6e38 Mon Sep 17 00:00:00 2001 From: Arthur Poulet Date: Sat, 26 Mar 2016 18:43:24 +0100 Subject: [PATCH 2/3] fix shebang on start.py python -> python2 --- start.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.py b/start.py index 5a612a8d..f68050f5 100644 --- a/start.py +++ b/start.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # Included modules From 89b4fca6a267b85ce173c820032f3a4a3309aa91 Mon Sep 17 00:00:00 2001 From: Arthur Poulet Date: Wed, 30 Mar 2016 15:43:58 +0200 Subject: [PATCH 3/3] use python2.7 and not python2 (OSX compatibility) --- start.py | 2 +- zeronet.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/start.py b/start.py index f68050f5..ee23303b 100644 --- a/start.py +++ b/start.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python2.7 # Included modules diff --git a/zeronet.py b/zeronet.py index d3627a2d..1b97da99 100755 --- a/zeronet.py +++ b/zeronet.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python2.7 # Included modules import os