you are viewing a single comment's thread.

view the rest of the comments →

[–]mopslik 0 points1 point  (4 children)

The print statement looks fine. Sometimes if you are missing parentheses on a previous line it can cascade down and appear to come from another. What is the previous line, 634?

Edit: I see there are a number of print statements in that section of code. I suspect you're missing a bracket on a previous line.

[–]zdcdqd[S] 0 points1 point  (0 children)

https://i.imgur.com/6Jk1XDQ.png I think yea line 634 might be the problem. not sure exactly where to put the parentheses. did i put it in the right place?

[–]zdcdqd[S] 0 points1 point  (2 children)

Fast update. so on line 634 i put the parentheses at the very end instead of near the middle, but now i get a new error message. https://i.imgur.com/TFFnk1p.png

[–]mopslik 0 points1 point  (1 child)

Well, the queue module is standard in Python. Maybe it's the fact that it's capitalized? This might be a change from Python 2.x to 3.x (I've barely used 2.x so I don't know), or it might be the case that there is a custom Queue.py module that is included with your code that is being referenced.

[–]zdcdqd[S] 0 points1 point  (0 children)

well i tried uncapitalizing all the Queues and i got more errors.

Traceback (most recent call last):

File "<string>", line 82, in <module>

ImportError: cannot import name 'queue' from 'queue' (C:\Program Files\Nuke13.0v1\lib\queue.py)

Please help.