tfw: handle negative temps
parent
7b41ea29bd
commit
0461aab1c1
|
@ -43,7 +43,7 @@ def tfw(phenny, input, fahrenheit=False, celsius=False):
|
||||||
# temperature is everything up to first <br />
|
# temperature is everything up to first <br />
|
||||||
tempt = ""
|
tempt = ""
|
||||||
for c in main[0].text:
|
for c in main[0].text:
|
||||||
if c.isdigit():
|
if c.isdigit() or c == '-':
|
||||||
tempt += c
|
tempt += c
|
||||||
temp = int(tempt)
|
temp = int(tempt)
|
||||||
deg = chr(176)
|
deg = chr(176)
|
||||||
|
|
Loading…
Reference in New Issue