From 07c2b3e3e485da2634cfca57bd97468d7a476f30 Mon Sep 17 00:00:00 2001 From: Denis Zheleztsov Date: Fri, 14 Oct 2016 12:41:19 +0300 Subject: [PATCH] Small fix --- surok/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/surok/system.py b/surok/system.py index 8d7ecff..ec3470a 100644 --- a/surok/system.py +++ b/surok/system.py @@ -84,5 +84,5 @@ def restart_self_in_marathon(marathon): if marathon['force'] is True: r = requests.post(uri, data = {'force': 'true'}) else: - r = requests.post(uri, data = {}) + r = requests.post(uri, data = {'force': 'false'})