corrected the try - import statement

This commit is contained in:
MalcolmMielle 2014-11-04 13:49:09 +01:00
parent 543ebfbb89
commit e2c85047ce
1 changed files with 10 additions and 8 deletions

View File

@ -3,16 +3,18 @@
from __future__ import print_function #print function python 2 and 3 compatible from __future__ import print_function #print function python 2 and 3 compatible
import email
import hashlib
import imaplib
import os.path
import requests
import sys
import time
#This is used to import library depending on the python version used.
try: try:
#import urllib.request as urllib_request #for python 3 #import urllib.request as urllib_request #for python 3
import email
import hashlib
import imaplib
import json import json
import os.path
import requests
import sys
import time
except ImportError: except ImportError:
#import urllib2 as urllib_request # for python 2 #import urllib2 as urllib_request # for python 2
import simplejson as json import simplejson as json