OSDN Git Service

fix remove error.
[rec10/rec10-git.git] / rec10 / trunk / src / epgrefresh.py
index 2ad1504..2ffd4ba 100755 (executable)
@@ -1,26 +1,24 @@
 #!/usr/bin/python
 # coding: UTF-8
 # Rec10 TS Recording Tools
-# Copyright (C) 2009 Yukikaze
+# Copyright (C) 2009-2010 Yukikaze
 import os
 import sys
 import time
 
 import chdb
 import epgdb
+import recdblist
 
 update = chdb.update()
-print u"番組表更新処理"
-print update
 if len(update) > 0:
-    print u"番組表を更新"
-    print update
+    #recdblist.printutf8(u"番組表を更新")
+    #print update
     pid = os.fork()
     if pid > 0:#親プロセスの場合
         ""
     else:#子プロセスの場合 アップデートを行って終了
         for bctype in update:
             time.sleep(1)
-            print bctype
             epgdb.updatebc(bctype)
         sys.exit(0)
\ No newline at end of file