OSDN Git Service

delete branch files
[rec10/rec10-git.git] / rec10 / branches / 0.4 / src / src / configreader.py
diff --git a/rec10/branches/0.4/src/src/configreader.py b/rec10/branches/0.4/src/src/configreader.py
deleted file mode 100644 (file)
index 3f7d663..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/python
-# coding: UTF-8
-# Rec10 TS Recording Tools
-# Copyright (C) 2009 Yukikaze
-import os
-import ConfigParser
-
-mypath=str(os.path.dirname(os.path.abspath(__file__)))+"/"
-
-confp=ConfigParser.SafeConfigParser()
-Conf='config.ini'
-confp.read(mypath+Conf)
-
-def getpath(string):
-    global confp
-    return confp.get('path',string)