A project repository on Pavlovia

Hi,

Would you please help me with the problem? I tried to upload the program in Pavlovia. and encounter this error message.

Traceback (most recent call last):
File “C:\Program Files\PsychoPy3\lib\site-packages\psychopy\app\builder\builder.py”, line 1232, in onPavloviaSync
retVal = pavlovia_ui.syncProject(parent=self, project=self.project)
File “C:\Program Files\PsychoPy3\lib\site-packages\psychopy\app\pavlovia_ui\project.py”, line 497, in syncProject
syncFrame = parent.app.runner.stdOut
AttributeError: ‘NoneType’ object has no attribute ‘stdOut’

AttributeError: ‘NoneType’ object has no attribute ‘stdOut’

I believe this is one we either fixed in the last release or have a commit pushed waiting for the next release - but in either case this happens when you sync to Pavlovia without a Runner window open. When there isn’t a Runner window, parent.app.runner is set to None, so when it tries to send progress updates to the Runner’s stdOut panel it can’t. The fix will just open a Runner window for you, so all you need to do is use Window -> Runner to open a new Runner window manually and it should be able to sync.

Thanks!