Fix divio cloud compatibility

This commit is contained in:
Iacopo Spalletti 2017-03-19 00:04:32 +01:00
parent 80daad31de
commit b67466d4db
No known key found for this signature in database
GPG Key ID: BDCBC2EB289F60C6
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
# -*- coding: utf-8 -*-
from aldryn_client import forms
try:
from divio_cli import forms
except ImportError:
from aldryn_client import forms
class Form(forms.BaseForm):