Skip to content

Commit

Permalink
Fix #75: when no update is available, explicitly checking for updates…
Browse files Browse the repository at this point in the history
… raises an exception
  • Loading branch information
vincent-lg committed Jan 8, 2017
1 parent 0f89389 commit fe34eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/window.py
Expand Up @@ -450,7 +450,7 @@ def OnResponseUpdate(self, build=None):
self.loading.Destroy()
if build is None:
message = t("ui.message.update.noupdate")
wx.MessageBox(message, t("ui.message.information"),
wx.MessageBox(message, t("ui.alert.information"),
wx.OK | wx.ICON_INFORMATION)

if build is not None:
Expand Down

0 comments on commit fe34eba

Please sign in to comment.