From d564323ac1662d70fb6c59446c2909d608e535d7 Mon Sep 17 00:00:00 2001 From: Safihre Date: Wed, 26 Dec 2018 11:36:34 +0100 Subject: [PATCH] Py3: Update incorrect shebang --- SABnzbd.py | 2 +- sabnzbd/utils/certgen.py | 2 +- sabnzbd/utils/happyeyeballs.py | 2 +- sabnzbd/utils/kronos.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SABnzbd.py b/SABnzbd.py index 9cdaf8f..1ef911a 100755 --- a/SABnzbd.py +++ b/SABnzbd.py @@ -1,4 +1,4 @@ -#!/usr/bin/python33 -OO +#!/usr/bin/python3 -OO # Copyright 2007-2019 The SABnzbd-Team # # This program is free software; you can redistribute it and/or diff --git a/sabnzbd/utils/certgen.py b/sabnzbd/utils/certgen.py index 2058ecb..d05052b 100644 --- a/sabnzbd/utils/certgen.py +++ b/sabnzbd/utils/certgen.py @@ -1,4 +1,4 @@ -#!/usr/bin/python33 +#!/usr/bin/python3 """ Adapted from the docs of cryptography diff --git a/sabnzbd/utils/happyeyeballs.py b/sabnzbd/utils/happyeyeballs.py index a99a85a..320e86b 100644 --- a/sabnzbd/utils/happyeyeballs.py +++ b/sabnzbd/utils/happyeyeballs.py @@ -1,4 +1,4 @@ -#!/usr/bin/python33 +#!/usr/bin/python3 # Python implementation of RFC 6555 / Happy Eyeballs: find the quickest IPv4/IPv6 connection # See https://tools.ietf.org/html/rfc6555 # Method: Start parallel sessions using threads, and only wait for the quickest succesful socket connect diff --git a/sabnzbd/utils/kronos.py b/sabnzbd/utils/kronos.py index 58acb61..3914f5f 100644 --- a/sabnzbd/utils/kronos.py +++ b/sabnzbd/utils/kronos.py @@ -1,4 +1,4 @@ -#!/usr/bin/python33 +#!/usr/bin/python3 """Module that provides a cron-like task scheduler. This task scheduler is designed to be used from inside your own program.