From 236f8fcfe6a5cdca9002f0ee6a87cc54657849ce Mon Sep 17 00:00:00 2001 From: Jake Charman Date: Mon, 25 May 2020 17:04:27 +0100 Subject: [PATCH] Fix shebang for Python 3 --- updateCloudflare.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/updateCloudflare.py b/updateCloudflare.py index 885ee7d..d56b118 100755 --- a/updateCloudflare.py +++ b/updateCloudflare.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 try: import requests @@ -142,4 +142,4 @@ else: exit(0) else: print("Cloudflare IP does not match our current IP... Updating Cloudflare.") - updateCloudflare(zoneID, authEmail, apiKey, hostToUpdate, ip) \ No newline at end of file + updateCloudflare(zoneID, authEmail, apiKey, hostToUpdate, ip)