Changeset 8d06eb5569325e9f15059ad424cee373bc5d98b6
- Timestamp:
- 03/09/08 22:34:16
(8 months ago)
- Author:
- wgw <tjm1100@gmail.com>
- git-committer:
- wgw <tjm1100@gmail.com> 1205120056 -0500
- git-parent:
[75e433535c75a57308c5f2b64dcb42f35d45af67]
- git-author:
- wgw <tjm1100@gmail.com> 1205120056 -0500
- Message:
write soft reset to debug
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| re40c8f2 |
r8d06eb5 |
|
| 6 | 6 | from xml.sax.saxutils import escape |
|---|
| 7 | 7 | from lrucache import LRUCache |
|---|
| | 8 | import debug |
|---|
| 8 | 9 | |
|---|
| 9 | 10 | SCRIPTDIR = os.path.dirname(__file__) |
|---|
| … | … | |
| 33 | 34 | t.text = '<h3>The pyTivo Server has been soft reset.</h3> <br>pyTivo has reloaded the pyTivo.conf file and all changed should now be in effect.' |
|---|
| 34 | 35 | handler.wfile.write(t) |
|---|
| | 36 | debug.debug_write(__name__, debug.fn_attr(), ['The pyTivo Server has been soft reset.']) |
|---|
| | 37 | debug.print_conf(__name__, debug.fn_attr()) |
|---|
| 35 | 38 | |
|---|
| 36 | 39 | def Admin(self, handler, query): |
|---|