-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
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
bug in os.path.join #28
Comments
@QuellaLiu Thanks, could you please submit PR with your suggested changes? |
Doing it manually - with I suspect it's a combination of the construct in the particulars zip, plus this code in utils.py:56
Can you please attach the zip file you're seeing the bug for, plus the exact arguments you're calling the keywords/methods with? Thank you. |
I submitted a PR several days ago, but can't add any reviewer. I don't know what's the next step. Who will merge the change? |
my PR: LiuQiE#1 |
@LiuQiE you need to submit your PR to this repo. |
Sorry! I submitted a PR to this repo just now. |
I can see the PR is merged. When will you put the latest version in https://pypi.python.org/pypi/robotframework-archivelibrary ? Thank you very much! |
Hi, Bulkan, could you please update https://pypi.python.org/pypi/robotframework-archivelibrary as soon as possible? Thank you! |
any progress on https://pypi.python.org/pypi/robotframework-archivelibrary? |
In ‘utils.py’,
When I unzip a file which has a path in it,
The case fails. “OSError: [Errno 13] Permission denied: '/ram'”
That’s because the method ‘os.path.join’ does not work as we expect.
For example:
After I change the utils.py as below,
Case passes, because,
That is what we expect.
The text was updated successfully, but these errors were encountered: