ansible/roles/notifs/backend/files/patched-fedmsg-hub
2014-03-14 15:53:53 +00:00

16 lines
368 B
Python

#!/usr/bin/python
# This file is managed by ansible.
#
# Its like "permanent hotfix" so that the fedmsg-hub loads
# the forward-compat sqlalchemy.
#
__requires__ = ['fedmsg', "sqlalchemy>=0.8"]
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.exit(
load_entry_point('fedmsg', 'console_scripts', 'fedmsg-hub')()
)