Index: third_party/buildbot_7_12/buildbot/slave/registry.py |
diff --git a/third_party/buildbot_7_12/buildbot/slave/registry.py b/third_party/buildbot_7_12/buildbot/slave/registry.py |
deleted file mode 100644 |
index 772aad33c674ab30405cd2de3d186e92ea5efcde..0000000000000000000000000000000000000000 |
--- a/third_party/buildbot_7_12/buildbot/slave/registry.py |
+++ /dev/null |
@@ -1,17 +0,0 @@ |
- |
-commandRegistry = {} |
- |
-def registerSlaveCommand(name, factory, version): |
- """ |
- Register a slave command with the registry, making it available in slaves. |
- |
- @type name: string |
- @param name: name under which the slave command will be registered; used |
- for L{buildbot.slave.bot.SlaveBuilder.remote_startCommand} |
- |
- @type factory: L{buildbot.slave.commands.Command} |
- @type version: string |
- @param version: version string of the factory code |
- """ |
- assert not commandRegistry.has_key(name) |
- commandRegistry[name] = (factory, version) |