Changeset 4028
- Timestamp:
- 07/17/08 15:56:44 (6 months ago)
- Files:
-
- announcerplugin/0.11/announcerplugin/subscribers/ticket_compat.py (modified) (1 diff)
- announcerplugin/0.11/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
announcerplugin/0.11/announcerplugin/subscribers/ticket_compat.py
r3107 r4028 168 168 def get_subscription_categories(self, realm): 169 169 if realm == 'ticket': 170 yield 'changed'171 yield 'attachment added'172 return170 return ('created', 'changed', 'attachment added') 171 else: 172 return tuple() 173 173 174 174 def get_subscriptions_for_event(self, event): announcerplugin/0.11/setup.py
r3107 r4028 28 28 # ---------------------------------------------------------------------------- 29 29 30 # Maintained by doki_pen <doki_pen@doki-pen.org> 31 30 32 from setuptools import find_packages, setup 31 33
