Changeset 8944280bc8fb846016241a4cf427de040a5f34bd

Show
Ignore:
Timestamp:
12/19/06 01:40:59 (2 years ago)
Author:
Jason Michalski <armooo@armooo.net>
git-committer:
Jason Michalski <armooo@armooo.net> 1166514059 +0000
git-parent:

[c148655254a60e83150e6287608a50862af58b3d]

git-author:
Jason Michalski <armooo@armooo.net> 1166514059 +0000
Message:

pyTivo
- Spaces in the share name

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • httpserver.py

    r4db5c7a r8944280  
    2626        for name, container in self.server.containers.items(): 
    2727            #XXX make a regex 
    28             if self.path.startswith('/' + name): 
     28            path = unquote_plus(self.path) 
     29            if path.startswith('/' + name): 
    2930                plugin = GetPlugin(container['type']) 
    3031                plugin.SendFile(self, container, name)