Changeset 1d1efb480298a8ec0a48941d8ab0f01f58677cfd

Show
Ignore:
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
  • httpserver.py

    r6bdab3e r1d1efb4  
    7171            if query.has_key('Container'): 
    7272                #Dispatch to the container plugin 
    73                 foundContainer = False 
    7473                for name, container in self.server.containers.items(): 
    7574                    if query['Container'][0].startswith(name): 
    76                         foundContainer = True 
    7775                        plugin = GetPlugin(container['type']) 
    7876                        if hasattr(plugin,command): 
     
    8280                            self.unsupported(query) 
    8381                        break 
    84                 if not foundContainer: 
    85                     self.unsuported(query) 
    8682        else: 
    8783            self.unsupported(query)