Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/recorded.py
diff options
context:
space:
mode:
authorerikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-10-27 17:15:53 (GMT)
committer erikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-10-27 17:15:53 (GMT)
commit40327a96899d3936b769ef7048a0a5e1e94c291f (patch)
tree71f93aeb4440926969362bb036eaf2796df7fdca /recorded.py
parent5ad9db679c6f1b29ae44088071e511a5a1161958 (diff)
getUniqueFilepath called in wrong class
git-svn-id: http://mediamods.com/public-svn/camera-activity/Record.activity@753 574bc980-5f2d-0410-acbc-c8f9f0eb14e0
Diffstat (limited to 'recorded.py')
-rw-r--r--recorded.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/recorded.py b/recorded.py
index 15a0e9b..7c8a0a2 100644
--- a/recorded.py
+++ b/recorded.py
@@ -181,7 +181,7 @@ class Recorded:
if self.mediaFilename == None:
ext = self.ca.m.mediaTypes[self.type][self.ca.keyExt]
recdPath = os.path.join(self.ca.tempPath, "recdFile_"+self.mediaMd5+"."+ext)
- recdPath = self.getUniqueFilepath( recdPath, 0 )
+ recdPath = self.ca.m.getUniqueFilepath(recdPath, 0)
self.mediaFilename = os.path.basename(recdPath)
return self.mediaFilename
else: