|
@@ -21,6 +21,8 @@ class ContentSources(object):
|
21
|
21
|
def __init__(self, plugin_path, cfg_file="streams.cfg", cfg_file2=None):
|
22
|
22
|
self.plugins = {}
|
23
|
23
|
self.error_content = [("..atpakaļ", "back", "back.png", "Kļūda, atgriezties atpakaļ")]
|
|
24
|
+ if not plugin_path:
|
|
25
|
+ plugin_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "sources")
|
24
|
26
|
sys.path.insert(0, plugin_path)
|
25
|
27
|
#for f in os.listdir(plugin_path):
|
26
|
28
|
#for f in next(os.walk(plugin_path))[2]:
|
|
@@ -31,7 +33,7 @@ class ContentSources(object):
|
31
|
33
|
fname = os.path.split(fname)[1]
|
32
|
34
|
if fname == "__init__": continue
|
33
|
35
|
if ext == '.py':
|
34
|
|
- print "Importing %s"%fname
|
|
36
|
+ #print "Importing %s"%fname
|
35
|
37
|
mod = __import__(fname)
|
36
|
38
|
reload(mod)
|
37
|
39
|
if "Source" in dir(mod):
|