mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-24 10:31:56 +08:00
10 lines
273 B
Python
10 lines
273 B
Python
config = {
|
|
# The presence of this will cause fedmsg-hub to start its own websocket
|
|
# server along with it.
|
|
'moksha.livesocket.websocket.port': 9919,
|
|
}
|
|
|
|
# And... this is a hack to get python-txws to work with python-six on epel7
|
|
import six
|
|
six.PY2 = not six.PY3
|