corrected the try - import statement

This commit is contained in:
MalcolmMielle 2014-11-04 13:49:09 +01:00
父節點 543ebfbb89
當前提交 e2c85047ce
共有 1 個檔案被更改,包括 10 行新增8 行删除

查看文件

@ -3,16 +3,18 @@
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:
#import urllib.request as urllib_request #for python 3
import email
import hashlib
import imaplib
#import urllib.request as urllib_request #for python 3
import json
import os.path
import requests
import sys
import time
except ImportError:
#import urllib2 as urllib_request # for python 2
import simplejson as json