From 1c70589b098bd3b04ac8ea23053d35eae3131741 Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Mon, 6 Aug 2018 19:34:21 -0700 Subject: [PATCH] explicitly specify Python major version Fixes #8, while still using python2 for the moment --- hikvision_tftpd.py | 2 +- hikvision_tftpd_test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hikvision_tftpd.py b/hikvision_tftpd.py index 0f2bcb0..5412e1f 100755 --- a/hikvision_tftpd.py +++ b/hikvision_tftpd.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 """ Unbrick a Hikvision device. See README.md for usage information. """ diff --git a/hikvision_tftpd_test.py b/hikvision_tftpd_test.py index 2010cdc..2d236b8 100755 --- a/hikvision_tftpd_test.py +++ b/hikvision_tftpd_test.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 __author__ = 'Scott Lamb' __license__ = 'MIT'