From c9027a69b2ba6b20492f8e86e2bc39dbc89a8967 Mon Sep 17 00:00:00 2001 From: Ross Mountjoy Date: Mon, 11 May 2020 06:25:19 -0400 Subject: [PATCH] - update version --- dashmachine/platform/http_status.py | 4 ++-- dashmachine/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dashmachine/platform/http_status.py b/dashmachine/platform/http_status.py index 67911ed..d4c682b 100644 --- a/dashmachine/platform/http_status.py +++ b/dashmachine/platform/http_status.py @@ -65,7 +65,7 @@ class Platform: self.return_codes = "2xx,3xx" if not hasattr(self, "ssl_ignore"): self.ssl_ignore = "No" - + def process(self): # Check if method is within allowed methods for http_status if self.method.upper() not in ["GET", "HEAD", "OPTIONS", "TRACE"]: @@ -87,7 +87,7 @@ class Platform: ) prepped = req.prepare() if self.ssl_ignore == "yes": - resp = s.send(prepped,verify=False) + resp = s.send(prepped, verify=False) else: resp = s.send(prepped) resp = s.send(prepped) diff --git a/dashmachine/version.py b/dashmachine/version.py index 0b9070f..a6a732e 100755 --- a/dashmachine/version.py +++ b/dashmachine/version.py @@ -1,2 +1,2 @@ version = "v0.5" -revision_number = "4" +revision_number = "4.1"