Author: duncan
Date: Fri Nov  2 16:09:23 2007
New Revision: 10061

Log:
[ 1824855 ] IndentationError in recordserver
Fix applied


Modified:
   branches/rel-1-7/freevo/src/helpers/recordserver.py

Modified: branches/rel-1-7/freevo/src/helpers/recordserver.py
==============================================================================
--- branches/rel-1-7/freevo/src/helpers/recordserver.py (original)
+++ branches/rel-1-7/freevo/src/helpers/recordserver.py Fri Nov  2 16:09:23 2007
@@ -1512,7 +1512,7 @@
         fxd.info['recording_timestamp'] = str(rec_prog.start)
         # bad use of the movie year field :)
         try:
-        fxd.info['year'] = time.strftime(config.TV_RECORD_YEAR_FORMAT, 
time.localtime(rec_prog.start))
+            fxd.info['year'] = time.strftime(config.TV_RECORD_YEAR_FORMAT, 
time.localtime(rec_prog.start))
         except:
             fxd.info['year'] = '2007'
         fxd.title = rec_prog.title

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to