Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/recordtube.py
diff options
context:
space:
mode:
authorerikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-10-27 16:33:20 (GMT)
committer erikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-10-27 16:33:20 (GMT)
commitbd41abbcb3724a494c33fe95e1836bfc6e638056 (patch)
tree3f96a6bbd3731246898f04ecf5613811ae91d310 /recordtube.py
parent9eb8abca2c7f40feb759b68edc9e61308f48f67a (diff)
method to scope param misname
git-svn-id: http://mediamods.com/public-svn/camera-activity/Record.activity@749 574bc980-5f2d-0410-acbc-c8f9f0eb14e0
Diffstat (limited to 'recordtube.py')
-rw-r--r--recordtube.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/recordtube.py b/recordtube.py
index eeddc01..5087d34 100644
--- a/recordtube.py
+++ b/recordtube.py
@@ -71,7 +71,7 @@ class RecordTube(ExportedGObject):
def broadcastRecd(self, md5, filepath, sendThisTo ):
size = os.path.getsize(filepath)
- f = open(filename)
+ f = open(filepath)
chunk_size = 1000
chunks = size / chunk_size
if (size%chunk_size != 0):