Changeset 0b5554584f8f91075dedc0252c2448e3322342c5
- Timestamp:
- 04/07/08 17:25:46
(8 months ago)
- Author:
- Jason Michalski <jmichalski@jmichalski-desktop.(none)>
- git-committer:
- Jason Michalski <jmichalski@jmichalski-desktop.(none)> 1207607146 -0500
- git-parent:
[098d6b5be13dbaf0931f4989b9e2c05e01d8a9f7]
- git-author:
- Jason Michalski <jmichalski@jmichalski-desktop.(none)> 1207607146 -0500
- Message:
Lets get the body id before using it.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rae39ac9 |
r0b55545 |
|
| 41 | 41 | |
|---|
| 42 | 42 | def pushVideo(self, tsn, url, description, duration, size, title, subtitle): |
|---|
| | 43 | # It looks like tivo only supports one pc per house |
|---|
| | 44 | pc_body_id = self.__pcBodySearch()[0] |
|---|
| | 45 | |
|---|
| 43 | 46 | data = { |
|---|
| 44 | 47 | 'bodyId' : 'tsn:' + tsn, |
|---|
| … | … | |
| 57 | 60 | } |
|---|
| 58 | 61 | |
|---|
| 59 | | # It looks like tivo only supports one pc per house |
|---|
| 60 | | pc_body_id = self.__pcBodySearch()[0] |
|---|
| 61 | 62 | offer_id, content_id = self.__bodyOfferModify(data) |
|---|
| 62 | 63 | self.__subscribe(offer_id, content_id, tsn) |
|---|