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-11-03 14:39:09 (GMT)
committer erikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-11-03 14:39:09 (GMT)
commit6df4d537d5419b900de6022500cad67e6bc14a08 (patch)
tree7b81598eedf4894c6c6fbea0331c9b6c0082708d /recorded.py
parent7738c7697b8a79203f8316b5b4e5ee1d0448d939 (diff)
cat and split save the day
git-svn-id: http://mediamods.com/public-svn/camera-activity/Record.activity@874 574bc980-5f2d-0410-acbc-c8f9f0eb14e0
Diffstat (limited to 'recorded.py')
-rw-r--r--recorded.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/recorded.py b/recorded.py
index 0ceb9d8..441ca23 100644
--- a/recorded.py
+++ b/recorded.py
@@ -154,14 +154,14 @@ class Recorded:
if (self.audioImageFilename == None):
audioPixbuf = self.getThumbPixbuf()
else:
- audioFilepath = self._getAudioImageFilepath()
+ audioFilepath = self.getAudioImageFilepath()
if (audioFilepath != None):
audioPixbuf = gtk.gdk.pixbuf_new_from_file(audioFilepath)
return audioPixbuf
- def _getAudioImageFilepath( self ):
+ def getAudioImageFilepath( self ):
if (self.audioImageFilename != None):
audioFilepath = os.path.join(Instance.tmpPath, self.audioImageFilename)
return os.path.abspath(audioFilepath)