Commit 66d076d968d3d039238e79057d27ef7b1e854990

Authored by Playtenders
1 parent 1d385ade

float

Showing 1 changed file with 1 additions and 1 deletions
... ... @@ -102,7 +102,7 @@ def get_text_excluding_children(locator):
102 102 return text.strip()
103 103
104 104 def convert_float_to_string(number):
105   - return repr(number);
  105 + return repr(float(number));
106 106
107 107 def convert_date_for_compare_ex(datestr):
108 108 return datetime.strptime(datestr, "%d.%m.%Y %H:%M").strftime("%Y-%m-%d %H:%M+02:00")
... ...
Please register or login to post a comment