Browse Source

Merge branch 'manyuser' of git@breakwa11:breakwa11/shadowsocks.git into manyuser

dev
breakwa11 9 years ago
parent
commit
93c94fbe3c
  1. 5
      shadowsocks/crypto/util.py

5
shadowsocks/crypto/util.py

@ -87,8 +87,9 @@ def find_library(possible_lib_names, search_symbol, library_name):
else: else:
logging.warn('can\'t find symbol %s in %s', search_symbol, logging.warn('can\'t find symbol %s in %s', search_symbol,
path) path)
except ValueError as e: except Exception:
logging.error(e) if path == paths[-1]:
raise
return None return None

Loading…
Cancel
Save