Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/record.py
diff options
context:
space:
mode:
authorerikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-11-01 15:07:32 (GMT)
committer erikb <erikb@574bc980-5f2d-0410-acbc-c8f9f0eb14e0>2007-11-01 15:07:32 (GMT)
commitb7d350c386e3132403f57104fd9513dce3caf14f (patch)
treeaf6a5e0f30fa48364aa32d9989d7cb4907ddac69 /record.py
parentebcd920e1352480e2acc4c45fd8cceb03dbd496f (diff)
update paths throughout
git-svn-id: http://mediamods.com/public-svn/camera-activity/Record.activity@825 574bc980-5f2d-0410-acbc-c8f9f0eb14e0
Diffstat (limited to 'record.py')
-rwxr-xr-xrecord.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/record.py b/record.py
index 6ecce19..ba33479 100755
--- a/record.py
+++ b/record.py
@@ -186,11 +186,11 @@ class Record(activity.Activity):
self._setup()
self.__class__.log.debug('_sharedCb: This is my activity: making a tube...')
- id = self.tubes_chan[telepathy.CHANNEL_TYPE_TUBES].OfferDBusTube( SERVICE, {})
+ id = self.tubes_chan[telepathy.CHANNEL_TYPE_TUBES].OfferDBusTube( Constants.SERVICE, {})
def _meshJoinedCb( self, activity ):
- log.debug('_meshJoinedCb')
+ self.__class__.log.debug('_meshJoinedCb')
if not self._shared_activity:
return
@@ -264,7 +264,7 @@ class Record(activity.Activity):
def _newTubeCb(self, id, initiator, type, service, params, state):
self.__class__.log.debug('New tube: ID=%d initator=%d type=%d service=%s params=%r state=%d', id, initiator, type, service, params, state)
- if (type == telepathy.TUBE_TYPE_DBUS and service == SERVICE):
+ if (type == telepathy.TUBE_TYPE_DBUS and service == Constants.SERVICE):
if state == telepathy.TUBE_STATE_LOCAL_PENDING:
self.tubes_chan[telepathy.CHANNEL_TYPE_TUBES].AcceptDBusTube(id)
tube_conn = TubeConnection(self.conn, self.tubes_chan[telepathy.CHANNEL_TYPE_TUBES], id, group_iface=self.text_chan[telepathy.CHANNEL_INTERFACE_GROUP])
@@ -276,7 +276,7 @@ class Record(activity.Activity):
def _newRecdCb( self, objectThatSentTheSignal, recorder, xmlString ):
- log.debug('_newRecdCb')
+ self.__class__.log.debug('_newRecdCb')
dom = None
try:
dom = xml.dom.minidom.parseString(xmlString)