mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Put import unicode_literals back in Fabric pyfiles
This commit is contained in:
parent
7e2dac5766
commit
62f953a6c7
@ -3,7 +3,7 @@
|
|||||||
""" Generating genesis block
|
""" Generating genesis block
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import with_statement
|
from __future__ import with_statement, unicode_literals
|
||||||
|
|
||||||
from fabric import colors as c
|
from fabric import colors as c
|
||||||
from fabric.api import *
|
from fabric.api import *
|
||||||
|
4
deploy-cluster-aws/fabfile.py
vendored
4
deploy-cluster-aws/fabfile.py
vendored
@ -4,7 +4,7 @@
|
|||||||
bigchaindb, including its storage backend.
|
bigchaindb, including its storage backend.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import with_statement
|
from __future__ import with_statement, unicode_literals
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
from time import *
|
from time import *
|
||||||
@ -36,7 +36,7 @@ env.roledefs = {
|
|||||||
}
|
}
|
||||||
env.roles = ["role1"]
|
env.roles = ["role1"]
|
||||||
env.user = 'ubuntu'
|
env.user = 'ubuntu'
|
||||||
env.key_filename = ['pem/bigchaindb.pem', ]
|
env.key_filename = 'pem/bigchaindb.pem'
|
||||||
|
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
|
Loading…
x
Reference in New Issue
Block a user