You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am receiving this error (the subject line) when right clicking in the side bar. The console is also spitting out the following:
Traceback (most recent call last):
File ".\sublime_plugin.py", line 280, in is_visible_
File ".\Tortoise.py", line 71, in handler
File ".\Tortoise.py", line 264, in is_visible
File ".\Tortoise.py", line 426, in get_status
File ".\Tortoise.py", line 353, in process_status
UnboundLocalError: local variable 'status' referenced before assignment
error: [Error 2] The system cannot find the file specified
It appears that on line 345 in Tortoise.py there is a try/except and the try is declaring a status variable. Something in here is failing within vcs.check_status and the status is not getting declared in the except. There are more references to the status variable later, but when going through the except status does not exist. This is causing the error. Not sure what is causing vcs.check_status to fail, however.
The text was updated successfully, but these errors were encountered:
Traceback (most recent call last):
File ".\sublime_plugin.py", line 280, in is_visible_
File ".\Tortoise.py", line 71, in handler
File ".\Tortoise.py", line 228, in is_visible
File ".\Tortoise.py", line 446, in get_status
File ".\Tortoise.py", line 353, in process_status
UnboundLocalError: local variable 'status' referenced before assignment
error: [Error 2] The system cannot find the file specified
I am receiving this error (the subject line) when right clicking in the side bar. The console is also spitting out the following:
Traceback (most recent call last):
File ".\sublime_plugin.py", line 280, in is_visible_
File ".\Tortoise.py", line 71, in handler
File ".\Tortoise.py", line 264, in is_visible
File ".\Tortoise.py", line 426, in get_status
File ".\Tortoise.py", line 353, in process_status
UnboundLocalError: local variable 'status' referenced before assignment
error: [Error 2] The system cannot find the file specified
It appears that on line 345 in Tortoise.py there is a try/except and the try is declaring a status variable. Something in here is failing within vcs.check_status and the status is not getting declared in the except. There are more references to the status variable later, but when going through the except status does not exist. This is causing the error. Not sure what is causing vcs.check_status to fail, however.
The text was updated successfully, but these errors were encountered: