From c70e3bb3dd8ab17200bdddb37235df536813dfa7 Mon Sep 17 00:00:00 2001 From: shortcutme Date: Thu, 4 Oct 2018 15:43:12 +0200 Subject: [PATCH] Add comment to detection of Android float issue --- src/Config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config.py b/src/Config.py index 99801269..e937e0c4 100644 --- a/src/Config.py +++ b/src/Config.py @@ -99,7 +99,7 @@ class Config(object): use_openssl = True - if repr(1483108852.565) != "1483108852.565": + if repr(1483108852.565) != "1483108852.565": # Fix for weird Android issue fix_float_decimals = True else: fix_float_decimals = False