Fixed enums in python 2.7, thanks to @liamkirsh

This commit is contained in:
Mads Marquart
2017-07-12 14:52:15 +02:00
parent a99108fff6
commit 5e7f7750de
2 changed files with 2 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ from .client import *
__copyright__ = 'Copyright 2015 - {} by Taehoon Kim'.format(datetime.now().year)
__version__ = '1.0.13'
__version__ = '1.0.15'
__license__ = 'BSD'
__author__ = 'Taehoon Kim; Moreels Pieter-Jan; Mads Marquart'
__email__ = 'carpedm20@gmail.com'

View File

@@ -1,3 +1,4 @@
requests
lxml
beautifulsoup4
enum34