Skip to content

Commit

Permalink
1.2.6 - python3 does not need the import statement
Browse files Browse the repository at this point in the history
  • Loading branch information
mahtin committed Oct 21, 2016
1 parent 968b93c commit 110870b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions CloudFlare/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
""" Cloudflare v4 API"""

from cloudflare import CloudFlare
try:
from cloudflare import CloudFlare
except:
pass

__version__ = '1.2.5'
__version__ = '1.2.6'

0 comments on commit 110870b

Please sign in to comment.