"ImportError: No module named sublimeplugin"
Here are the contents of my file I'm doing just to test things out:
- Code: Select all
import sublime, sublimeplugin
print "plugin loaded"
class Test1Command(sublimeplugin.TextCommand):
def run(self, view, args):
print "command run"
Any ideas on what I may be doing wrong or missing?