# HG changeset patch # User Jeff Hammel # Date 1399824881 25200 # Node ID 43e472db43531c905fe8381924ba981ea876fcde # Parent 3fb63aa336b30d1778c1254b2bc4d005a3896cd7 STUB: autobot/projects/__init__.py autobot/projects/toolbox/__init__.py diff -r 3fb63aa336b3 -r 43e472db4353 autobot/projects/__init__.py --- a/autobot/projects/__init__.py Sun May 11 08:47:50 2014 -0700 +++ b/autobot/projects/__init__.py Sun May 11 09:14:41 2014 -0700 @@ -25,6 +25,8 @@ for module in os.listdir(here) if module.endswith('.py') and not module.startswith('_')] packages.extend(modules) + +# load the packages for package in packages: try: module = imp.load_package('autobot.projects.'+package, imp.find_module(package, [here])[1]) diff -r 3fb63aa336b3 -r 43e472db4353 autobot/projects/toolbox/__init__.py --- a/autobot/projects/toolbox/__init__.py Sun May 11 08:47:50 2014 -0700 +++ b/autobot/projects/toolbox/__init__.py Sun May 11 09:14:41 2014 -0700 @@ -5,11 +5,9 @@ class TestToolbox(PythonSourceFactory): """ an index of software tools: - https://github.com/k0s/toolbox """ - sources = {'hg': [], - 'git': ['git://github.com/k0s/toolbox.git']} + sources = {'hg': ['http://k0s.org/hg/toolbox'],} def __init__(self): PythonSourceFactory.__init__(self, name='toolbox')