Yes. PY2 is the same as 'not PY3'.

This commit is contained in:
Ralph Bean 2014-07-17 01:52:44 +00:00
parent 21d378da97
commit 45e5b2536f

View file

@ -1,6 +1,9 @@
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