Merge pull request #496 from CPrompt/weather_fix_typo
Fixed typo for city output def
This commit is contained in:
commit
ec0a18e3a0
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ class Module(bumblebee.engine.Module):
|
||||||
if self._showminmax:
|
if self._showminmax:
|
||||||
self._showcity=False
|
self._showcity=False
|
||||||
return self.city() + self.temperature() + " Hi:" + self.tempmax() + " Lo:" + self.tempmin()
|
return self.city() + self.temperature() + " Hi:" + self.tempmax() + " Lo:" + self.tempmin()
|
||||||
elif self._city:
|
elif self._showcity:
|
||||||
return self.city() + self.temperature()
|
return self.city() + self.temperature()
|
||||||
else:
|
else:
|
||||||
return self.temperature()
|
return self.temperature()
|
||||||
|
|
Loading…
Reference in a new issue