diff --git a/gis-weather.py b/gis-weather.py index d6e4e95..207ae7a 100644 --- a/gis-weather.py +++ b/gis-weather.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # # gis_weather.py -v = '0.8.2.83' +v = '0.8.2.84' # Copyright (C) 2013-2018 Alexander Koltsov # # This program is free software: you can redistribute it and/or modify diff --git a/utils/wind_direct_convert.py b/utils/wind_direct_convert.py index bd2778c..3ca36b3 100644 --- a/utils/wind_direct_convert.py +++ b/utils/wind_direct_convert.py @@ -14,6 +14,7 @@ def convert(deg): def convert2(d): direct = '' + if d == '0': direct = _('Calm') if d == '1': direct = _('N') if d == '2': direct = _('N')+_('E') if d == '3': direct = _('E')