We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f3f20d commit 4a77a44Copy full SHA for 4a77a44
irods/__init__.py
@@ -16,7 +16,7 @@ def env_filename_from_keyword_args(kwargs):
16
def derived_auth_filename(env_filename):
17
if not env_filename:
18
return ''
19
- default_irods_authentication_file = os.path.join(os.path.dirname(env_file),'.irodsA')
+ default_irods_authentication_file = os.path.join(os.path.dirname(env_filename),'.irodsA')
20
return os.environ.get('IRODS_AUTHENTICATION_FILE', default_irods_authentication_file)
21
22
# This has no effect if basicConfig() was previously called.
irods/account.py
@@ -1,4 +1,3 @@
1
-import os
2
from irods import derived_auth_filename
3
4
class iRODSAccount(object):
0 commit comments