We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My irods_home is "/nluu12p/home/research-test-christine" and I can instantiate it in three ways.
In [5]: print(IrodsPath(session).parent) /nluu12p/home/research-test-christine
In [6]: print(IrodsPath(session, "~").parent) /nluu12p/home/research-test-christine
In [7]: print(IrodsPath(session, session.home).parent) /nluu12p/home
But only the last one will give me the correct parent.
The text was updated successfully, but these errors were encountered:
It's the old pathlib doing it's things again. I guess we're going to move further and further away from copying its behavior..
Will fix after #169 is merged.
Sorry, something went wrong.
qubixes
Successfully merging a pull request may close this issue.
My irods_home is "/nluu12p/home/research-test-christine" and I can instantiate it in three ways.
In [5]: print(IrodsPath(session).parent)
/nluu12p/home/research-test-christine
In [6]: print(IrodsPath(session, "~").parent)
/nluu12p/home/research-test-christine
In [7]: print(IrodsPath(session, session.home).parent)
/nluu12p/home
But only the last one will give me the correct parent.
The text was updated successfully, but these errors were encountered: