Skip to content

Commit

Permalink
Clients: Optional load of paramiko; Fix rucio#1324
Browse files Browse the repository at this point in the history
  • Loading branch information
bari12 committed Jul 10, 2018
1 parent a91a9a0 commit 091879d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/rucio/common/utils.py
Expand Up @@ -97,7 +97,10 @@
from web import HTTPError

if EXTRA_MODULES['paramiko']:
from paramiko import RSAKey
try:
from paramiko import RSAKey
except Exception:
EXTRA_MODULES['paramiko'] = False

if EXTRA_MODULES['flask']:
from flask import Response
Expand Down

0 comments on commit 091879d

Please sign in to comment.