From 90012eea96d4453231db348bad4568572601b4b9 Mon Sep 17 00:00:00 2001 From: neodarz Date: Thu, 12 Oct 2017 22:16:31 +0200 Subject: [TEMPORARY FIX] Remove https warning --- syncthingmanager/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/syncthingmanager/__init__.py b/syncthingmanager/__init__.py index edded38..cae41bb 100644 --- a/syncthingmanager/__init__.py +++ b/syncthingmanager/__init__.py @@ -26,6 +26,9 @@ from textwrap import dedent import platform from math import floor +import urllib3 +urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) + # Put globals here __VERSION__ = '0.1.0' __DEFAULT_CONFIG_LOCATION__ = '$HOME/.config/syncthingmanager/syncthingmanager.conf' -- cgit v1.2.1