Skip to content

Commit

Permalink
Merge pull request #4398 from peircej/bf-not-iterable-error
Browse files Browse the repository at this point in the history
BF: not iterable error on Exception handler
  • Loading branch information
peircej committed Dec 2, 2021
2 parents a69f185 + 8a6e8ee commit 0b25e22
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion psychopy/visual/movie2.py
Expand Up @@ -115,7 +115,7 @@
bits = 64
else:
bits = 32
if "wrong architecture" in err:
if "wrong architecture" in str(err):
msg = ("Failed to import vlc module for MovieStim2.\n"
"You're using %i-bit python. Is your VLC install the same?"
% bits)
Expand Down
3 changes: 0 additions & 3 deletions psychopy/visual/vlcmoviestim.py
Expand Up @@ -13,9 +13,6 @@
# class was taken and rewritten to use only VLC.
#




import os
import sys
import threading
Expand Down
1 change: 0 additions & 1 deletion requirements_suggested.txt
Expand Up @@ -4,7 +4,6 @@ pyserial
pyparallel
egi
google-api-python-client
SpeechRecognition
pyxid2
badapted
darc-experiment-toolbox
Expand Down

0 comments on commit 0b25e22

Please sign in to comment.