Fixed typo for city output def

This commit is contained in:
CPrompt 2019-12-24 11:59:40 -05:00
parent 67e7dcbbaa
commit b83e9efe3d

View file

@ -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()