Disabled Flamenco and Attract, until they are also ported to Python 3.6
This commit is contained in:
12
cloud.py
12
cloud.py
@@ -1,15 +1,15 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from pillar import PillarServer
|
from pillar import PillarServer
|
||||||
from attract import AttractExtension
|
# from attract import AttractExtension
|
||||||
from flamenco import FlamencoExtension
|
# from flamenco import FlamencoExtension
|
||||||
|
|
||||||
attract = AttractExtension()
|
# attract = AttractExtension()
|
||||||
flamenco = FlamencoExtension()
|
# flamenco = FlamencoExtension()
|
||||||
|
|
||||||
app = PillarServer('.')
|
app = PillarServer('.')
|
||||||
app.load_extension(attract, '/attract')
|
# app.load_extension(attract, '/attract')
|
||||||
app.load_extension(flamenco, '/flamenco')
|
# app.load_extension(flamenco, '/flamenco')
|
||||||
app.process_extensions()
|
app.process_extensions()
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
Reference in New Issue
Block a user