aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/PluginComponent.py
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2011-03-25 16:48:32 +0100
committerAndreas Oberritter <obi@opendreambox.org>2011-03-29 15:43:58 +0200
commit7f070068aa203cb95252b641b1c0cc5308a604ee (patch)
treed28ef172d93fe87802c068d8ab407a1447fd0408 /lib/python/Components/PluginComponent.py
parent157a1d18e849c42c6a85ddc97c125ee0287bf7dc (diff)
downloadenigma2-7f070068aa203cb95252b641b1c0cc5308a604ee.tar.gz
enigma2-7f070068aa203cb95252b641b1c0cc5308a604ee.zip
PluginComponent.py: remove filesystem writeability test
Diffstat (limited to 'lib/python/Components/PluginComponent.py')
-rwxr-xr-xlib/python/Components/PluginComponent.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/python/Components/PluginComponent.py b/lib/python/Components/PluginComponent.py
index c6ad584f..b06246b2 100755
--- a/lib/python/Components/PluginComponent.py
+++ b/lib/python/Components/PluginComponent.py
@@ -49,7 +49,6 @@ class PluginComponent:
directory_category = directory + c
if not os_path.isdir(directory_category):
continue
- open(directory_category + "/__init__.py", "a").close()
for pluginname in os_listdir(directory_category):
path = directory_category + "/" + pluginname
if os_path.isdir(path):