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
After installing the latest version via package control i get following output in sublime console:
Traceback (most recent call last):
File "./sublime_plugin.py", line 362, in run_
File "./phpcs.py", line 430, in run
File "./phpcs.py", line 284, in run
File "./phpcs.py", line 84, in get_errors
File "./phpcs.py", line 117, in execute
UnboundLocalError: local variable 'args' referenced before assignment
Could fix this with:
args = []
bevor
if Pref.phpcs_php_prefix_path != "" and self.class.name in Pref.phpcs_commands_to_php_prefix:
args = [Pref.phpcs_php_prefix_path]
some what in line 109
The text was updated successfully, but these errors were encountered:
After installing the latest version via package control i get following output in sublime console:
Traceback (most recent call last):
File "./sublime_plugin.py", line 362, in run_
File "./phpcs.py", line 430, in run
File "./phpcs.py", line 284, in run
File "./phpcs.py", line 84, in get_errors
File "./phpcs.py", line 117, in execute
UnboundLocalError: local variable 'args' referenced before assignment
Could fix this with:
args = []
bevor
if Pref.phpcs_php_prefix_path != "" and self.class.name in Pref.phpcs_commands_to_php_prefix:
args = [Pref.phpcs_php_prefix_path]
some what in line 109
The text was updated successfully, but these errors were encountered: