remove except only clauses

This commit is contained in:
David Halter
2013-09-06 00:02:32 +04:30
parent 78f3199b03
commit c3ba7d2ae8
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ import imp
import os
try:
import importlib
except:
except ImportError:
pass
is_py3k = sys.hexversion >= 0x03000000

View File

@@ -25,7 +25,7 @@ import json
import hashlib
try:
import cPickle as pickle
except:
except ImportError:
import pickle
import shutil