OSDN Git Service

stop using trunk or dist directory in rec10 project.
[rec10/rec10-git.git] / rec10 / trunk / src / epgrefresh.py
diff --git a/rec10/trunk/src/epgrefresh.py b/rec10/trunk/src/epgrefresh.py
deleted file mode 100755 (executable)
index 523bdfc..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/python
-# coding: UTF-8
-# Rec10 TS Recording Tools
-# Copyright (C) 2009-2011 Yukikaze
-import os
-import sys
-import time
-
-import chdb
-import epgdb
-import recdblist
-
-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)
-            epgdb.updatebc(bctype)
-        sys.exit(0)
\ No newline at end of file