]> git.pld-linux.org Git - packages/fedmsg-notify.git/blob - _pld.py
setup distro_specific/_pld
[packages/fedmsg-notify.git] / _pld.py
1 # This file is a part of fedmsg-notify.
2 #
3 # Authors: Elan Ruusamäe <glen@pld-linux.org>
4
5 import logging
6
7 log = logging.getLogger('moksha.hub')
8
9 def get_installed_packages():
10     """Retrieve the packages installed on the system"""
11     return []
12
13 def get_user_packages(usernames):
14     """Retrieve the packages maintained by `usernames`"""
15     return []
16
17 def get_reported_bugs():
18     """
19     Not implemented on PLD Linux, just return empty set
20     """
21
22     return set()
This page took 0.547558 seconds and 3 git commands to generate.