feat(ST2.EditorPackages): bump up all packages

- Refresh PackageCache with latest versions of everything
This commit is contained in:
Iristyle
2013-09-16 22:29:05 -04:00
parent 951be33c9e
commit 5ed4214a22
180 changed files with 9360 additions and 1211 deletions

View File

@@ -141,7 +141,7 @@ class Window:
if match:
return self._get_handle_and_name(line[:match.start()].strip())
else:
raise OSError, "Window information from %r did not contain window details." % line
raise OSError("Window information from %r did not contain window details." % line)
def _descendants(self, s, fn):
handles = []
@@ -258,7 +258,7 @@ def root(desktop=None):
if _is_x11():
return Window(None)
else:
raise OSError, "Desktop '%s' not supported" % use_desktop(desktop)
raise OSError("Desktop '%s' not supported" % use_desktop(desktop))
def find(callable, desktop=None):