Allow Iotronic-Api to run in python2.7

Change-Id: I3532c072faabb66cecb0b2834e3ab97b7f52539d
This commit is contained in:
Fabio Verboso 2018-09-14 15:49:43 +02:00
parent ea3b97693a
commit 1558b869ff
1 changed files with 8 additions and 1 deletions

View File

@ -13,7 +13,14 @@
# License for the specific language governing permissions and limitations
# under the License.
import _pickle as cpickle
try:
# allow iotronic api to run also with python3
import _pickle as cpickle
except Exception:
# allow iotronic api to run also with python2.7
import pickle as cpickle
from iotronic.common import exception
from iotronic.common import neutron
from iotronic.common import states