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:37:37 (GMT)
committer erikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-10-27 16:37:37 (GMT)
commit9320f77b87171f2b789de722b76ccd16bf1d555e (patch)
tree0306239f800b2dca29ef1a60f321a166d96f7ce0 /recordtube.py
parentbd41abbcb3724a494c33fe95e1836bfc6e638056 (diff)
method to scope param misname (Again)
git-svn-id: http://mediamods.com/public-svn/camera-activity/Record.activity@750 574bc980-5f2d-0410-acbc-c8f9f0eb14e0
Diffstat (limited to 'recordtube.py')
-rw-r--r--recordtube.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/recordtube.py b/recordtube.py
index 5087d34..701c6e0 100644
--- a/recordtube.py
+++ b/recordtube.py
@@ -79,8 +79,8 @@ class RecordTube(ExportedGObject):
for chunk in range(chunks):
bytes = f.read(chunk_size)
- self._logger.debug("sending " + str(chunk+1) + " of " + str(chunks) + " to " + lender )
- self.broadcastRecdBits(md5, chunk+1, chunks, bytes, sendTo, self.myHashKey)
+ self._logger.debug("sending " + str(chunk+1) + " of " + str(chunks) + " to " + sendThisTo )
+ self.broadcastRecdBits(md5, chunk+1, chunks, bytes, sendThisTo, self.myHashKey)
f.close()
return True