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
First of all, thank you for your beautiful plugins for sublime!
Running the portable ST3, Build 3009 on a Win7 / 32-Bit I get follwoing error on the start-up in the console:
reloading plugin Prefixr.Prefixr
Traceback (most recent call last):
File "C:\Portable Apps\Sublime Text 3\sublime_plugin.py", line 70, in reload_plugin
m = importlib.import_module(modulename)
File "X/importlib/init.py", line 88, in import_module
File "", line 1577, in _gcd_import
File "", line 1558, in _find_and_load
File "", line 1525, in _find_and_load_unlocked
File "", line 586, in _check_name_wrapper
File "", line 1023, in load_module
File "", line 1004, in load_module
File "", line 562, in module_for_loader_wrapper
File "", line 854, in _load_module
File "", line 981, in get_code
File "", line 313, in _call_with_frames_removed
File "C:\Portable Apps\Sublime Text 3\Data\Packages\Prefixr\Prefixr.py", line 162
except (urllib2.HTTPError) as (e):
^
SyntaxError: invalid syntax
As an effect of this the Prefixr Menu is there, but inactive (grayed out). I did the installation via you (again beautiful) Package Loader plugin and manualy. Both installations with the same effect.
Hope that the problem is not to hard to solve ;-)
The text was updated successfully, but these errors were encountered:
Tried using 2to3 on Prefixr.py to update syntax and libraries for Python 3. Fixed the syntax problems, but surfaced new ones with the ST3 API changes. Specifically changes to begin_end() and end_edit(), and perhaps others.
First of all, thank you for your beautiful plugins for sublime!
Running the portable ST3, Build 3009 on a Win7 / 32-Bit I get follwoing error on the start-up in the console:
reloading plugin Prefixr.Prefixr
Traceback (most recent call last):
File "C:\Portable Apps\Sublime Text 3\sublime_plugin.py", line 70, in reload_plugin
m = importlib.import_module(modulename)
File "X/importlib/init.py", line 88, in import_module
File "", line 1577, in _gcd_import
File "", line 1558, in _find_and_load
File "", line 1525, in _find_and_load_unlocked
File "", line 586, in _check_name_wrapper
File "", line 1023, in load_module
File "", line 1004, in load_module
File "", line 562, in module_for_loader_wrapper
File "", line 854, in _load_module
File "", line 981, in get_code
File "", line 313, in _call_with_frames_removed
File "C:\Portable Apps\Sublime Text 3\Data\Packages\Prefixr\Prefixr.py", line 162
except (urllib2.HTTPError) as (e):
^
SyntaxError: invalid syntax
As an effect of this the Prefixr Menu is there, but inactive (grayed out). I did the installation via you (again beautiful) Package Loader plugin and manualy. Both installations with the same effect.
Hope that the problem is not to hard to solve ;-)
The text was updated successfully, but these errors were encountered: