aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-11-15 02:46:20 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-11-15 02:46:20 +0000
commit64bad81e89129d6f0c7276395509330ba952a887 (patch)
treef84eea0dc767beead448af373f560f7607573b7b /lib/python/Components
parentbdf0d2bf4833c3e9a27e35c066df37b3ec22b534 (diff)
downloadenigma2-64bad81e89129d6f0c7276395509330ba952a887.tar.gz
enigma2-64bad81e89129d6f0c7276395509330ba952a887.zip
fix mkdir "movies"
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/Harddisk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Harddisk.py b/lib/python/Components/Harddisk.py
index b51d7a67..0fc17d69 100644
--- a/lib/python/Components/Harddisk.py
+++ b/lib/python/Components/Harddisk.py
@@ -123,7 +123,7 @@ class Harddisk:
return (res >> 8)
def createMovieFolder(self):
- res = os.system("mkdir /hdd/movie")
+ res = os.system("mkdir /hdd/movies")
return (res >> 8)
def initialize(self):