Changeset 6d7b782e80d59bdd810ab473e8958d1fff31c20b
- Timestamp:
- 02/24/08 20:43:09
(11 months ago)
- Author:
- KRKeegan <-NOSPAM-kevin@krkeegan.com>
- git-committer:
- KRKeegan <-NOSPAM-kevin@krkeegan.com> 1203907389 -0800
- git-parent:
[5128daf80dfd3986d58e116aa5c640cd9d6518a1]
- git-author:
- KRKeegan <-NOSPAM-kevin@krkeegan.com> 1203907389 -0800
- Message:
No need to exit photo plugin.
It will just send 404s. No need to force exit.
pyTivo should only crash if there is no other option.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5f6523d |
r6d7b782 |
|
| 25 | 25 | # Version 0.1, Dec. 7, 2007 |
|---|
| 26 | 26 | |
|---|
| 27 | | import os, re, random, urllib, threading, time, cgi, sys |
|---|
| | 27 | import os, re, random, urllib, threading, time, cgi |
|---|
| 28 | 28 | try: |
|---|
| 29 | 29 | import Image |
|---|
| 30 | 30 | except ImportError: |
|---|
| 31 | 31 | print 'Photo Plugin Error: The Python Imaging Library is not installed' |
|---|
| 32 | | sys.exit(1) |
|---|
| 33 | 32 | from cStringIO import StringIO |
|---|
| 34 | 33 | from Cheetah.Template import Template |
|---|