Author: dmeyer
Date: Sun Mar 18 11:40:26 2007
New Revision: 9343
Modified:
trunk/tvserver/src/recorder.py
Log:
remove debug code: replace rpc2 with rpc
Modified: trunk/tvserver/src/recorder.py
==============================================================================
--- trunk/tvserver/src/recorder.py (original)
+++ trunk/tvserver/src/recorder.py Sun Mar 18 11:40:26 2007
@@ -155,7 +155,7 @@
# no recorder
yield True
- wait = entity.rpc2('home-theatre.device.list')
+ wait = entity.rpc('home-theatre.device.list')
yield wait
result = wait()
if not result:
@@ -255,7 +255,7 @@
def _describe(self):
"""
"""
- wait = self.entity.rpc2('home-theatre.device.describe', self.device)
+ wait = self.entity.rpc('home-theatre.device.describe', self.device)
yield wait
result = wait()
if not result:
@@ -425,7 +425,7 @@
filename = self.get_url(rec)
rec.url = filename
log.info('%s: schedule %s', self.name, rec.name)
- wait = self.entity.rpc2(
+ wait = self.entity.rpc(
'home-theatre.vdr.record', self.device, channel,
remote.start,
rec.stop + rec.stop_padding, filename, ())
yield wait
@@ -441,7 +441,7 @@
# remove the recording
log.info('%s: remove %s', self.name, remote.recording.name)
self.recordings.remove(remote)
- wait = self.entity.rpc2('home-theatre.vdr.remove', remote_id)
+ wait = self.entity.rpc('home-theatre.vdr.remove', remote_id)
yield wait
result = wait()
if not result:
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog