Changeset 1d1efb480298a8ec0a48941d8ab0f01f58677cfd
- Timestamp:
- 01/02/08 14:01:09
(11 months ago)
- Author:
- KRKeegan <kevin@krkeegan.com>
- git-committer:
- KRKeegan <kevin@krkeegan.com> 1199304069 -0800
- git-parent:
[75e84fa1bc5df80047962410571e4f9883c6b791]
- git-author:
- KRKeegan <kevin@krkeegan.com> 1199304069 -0800
- Message:
Removed excess lines to match master
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6bdab3e |
r1d1efb4 |
|
| 71 | 71 | if query.has_key('Container'): |
|---|
| 72 | 72 | #Dispatch to the container plugin |
|---|
| 73 | | foundContainer = False |
|---|
| 74 | 73 | for name, container in self.server.containers.items(): |
|---|
| 75 | 74 | if query['Container'][0].startswith(name): |
|---|
| 76 | | foundContainer = True |
|---|
| 77 | 75 | plugin = GetPlugin(container['type']) |
|---|
| 78 | 76 | if hasattr(plugin,command): |
|---|
| … | … | |
| 82 | 80 | self.unsupported(query) |
|---|
| 83 | 81 | break |
|---|
| 84 | | if not foundContainer: |
|---|
| 85 | | self.unsuported(query) |
|---|
| 86 | 82 | else: |
|---|
| 87 | 83 | self.unsupported(query) |
|---|