From 289edb310d6df0a1176a88ae81b163477aecb94b Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Wed, 12 Aug 2015 10:30:21 -0500 Subject: [PATCH] testing --- play_group.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/play_group.py b/play_group.py index 8709352..2006e10 100755 --- a/play_group.py +++ b/play_group.py @@ -77,9 +77,9 @@ class playIPSC(IPSC): return ''' - if (_ts == 0 and _dst_group not in trigger_groups_1): + if (_ts == 0 and _dst_group in trigger_groups_1): return - if (_ts == 1 and _dst_group not in trigger_groups_2): + if (_ts == 1 and _dst_group in trigger_groups_2): return logger.info('(Event ID: %s) Playback triggered from TS %s, TGID %s', self.event_id, (_ts +1), int_id(_dst_group))