From f674babbd1aadab3950ec1757ae80274c3662bd8 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sun, 26 Feb 2006 14:12:55 +0000 Subject: [PATCH] spacing --- src/common/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/helpers.py b/src/common/helpers.py index c177a4a71..a1bd9ea0c 100644 --- a/src/common/helpers.py +++ b/src/common/helpers.py @@ -439,7 +439,7 @@ def get_file_path_from_dnd_dropped_uri(uri): return path def from_xs_boolean_to_python_boolean(value): - # this is xs:boolean so 'true','false','1','0' + # this is xs:boolean so 'true', 'false', '1', '0' # convert those to True/False (python booleans) if value in ('1', 'true'): val = True