1
0
forked from VimPlug/jedi

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
+1 -1
View File
@@ -8,7 +8,7 @@ import imp
import os import os
try: try:
import importlib import importlib
except: except ImportError:
pass pass
is_py3k = sys.hexversion >= 0x03000000 is_py3k = sys.hexversion >= 0x03000000
+1 -1
View File
@@ -25,7 +25,7 @@ import json
import hashlib import hashlib
try: try:
import cPickle as pickle import cPickle as pickle
except: except ImportError:
import pickle import pickle
import shutil import shutil