Fixed typo for city output def
This commit is contained in:
parent
67e7dcbbaa
commit
b83e9efe3d
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