We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a5c02e commit afec412Copy full SHA for afec412
psychopy/app/connections/updates.py
@@ -332,11 +332,14 @@ def updateStatus(self):
332
"""Check the current version and most recent version and update ctrls
333
"""
334
if self.latest == -1:
335
+ # Set message and display, and return early if version could not be found
336
msg = _translate(
337
"You are running PsychoPy v%s.\n ") % self.runningVersion
338
msg += _translate("PsychoPy could not connect to the \n internet"
339
" to check for more recent versions.\n")
340
msg += _translate("Check proxy settings in preferences.")
341
+ self.statusMessage.SetLabel(msg)
342
+ return
343
elif (parse_version(self.latest['version'])
344
< parse_version(self.runningVersion)):
345
0 commit comments