Changeset f98554d57bbdf09fa5f1c5d12903e753fe2ef505
- Timestamp:
- 02/02/08 12:46:49
(1 year ago)
- Author:
- William McBrine <wmcbrine@gmail.com>
- git-committer:
- William McBrine <wmcbrine@gmail.com> 1201978009 -0500
- git-parent:
[136e01959731b5c05572da947196e51769d55a38]
- git-author:
- William McBrine <wmcbrine@gmail.com> 1201978009 -0500
- Message:
Cosmetic changes.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| re8f90ba |
rf98554d |
|
| 104 | 104 | def unsupported(self, query): |
|---|
| 105 | 105 | if hack83 and 'Command' in query and 'Filter' in query: |
|---|
| 106 | | debug_write(['Unsupported request, checking to see if it is video.', '\n']) |
|---|
| | 106 | debug_write(['Unsupported request,', |
|---|
| | 107 | 'checking to see if it is video.\n']) |
|---|
| 107 | 108 | command = query['Command'][0] |
|---|
| 108 | 109 | plugin = GetPlugin('video') |
|---|
| 109 | | if "".join(query['Filter']).find('video') >= 0 and hasattr(plugin,command): |
|---|
| 110 | | debug_write(['Unsupported request, yup it is video send to video plugin for it to sort out.', '\n']) |
|---|
| | 110 | if ''.join(query['Filter']).find('video') >= 0 and \ |
|---|
| | 111 | hasattr(plugin, command): |
|---|
| | 112 | debug_write(['Unsupported request,', |
|---|
| | 113 | 'yup it is video', |
|---|
| | 114 | 'send to video plugin for it to sort out.\n']) |
|---|
| 111 | 115 | method = getattr(plugin, command) |
|---|
| 112 | 116 | method(self, query) |
|---|