OSDN Git Service

stop using trunk directory in rectool
[rec10/rec10-git.git] / rec10 / trunk / src / epgrefresh.py
index 7de1fd9..523bdfc 100755 (executable)
@@ -1,25 +1,24 @@
 #!/usr/bin/python
 # coding: UTF-8
 # Rec10 TS Recording Tools
-# Copyright (C) 2009 Yukikaze
-import chdb
+# Copyright (C) 2009-2011 Yukikaze
 import os
+import sys
 import time
+
+import chdb
 import epgdb
-import sys
+import recdblist
 
-update=chdb.update()
-print "番組表更新処理"
-print update
-if len(update)>0:
-    print "番組表を更新"
-    print update
-    pid=os.fork()
-    if pid>0:#親プロセスの場合
+update = chdb.update()
+if len(update) > 0:
+    #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