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
A bug when generating plantuml URL on windows platform
This is caused by the difference of the implements of os.path.join on Linux and windows.
os.path.join
from plantumlcli import RemotePlantuml if __name__ == "__main__": r = RemotePlantuml.autoload() print(r._RemotePlantuml__request_url(os.path.join('123', 'sdkfjl')))
It will print http://www.plantuml.com/plantuml/123%5Csdkfjl on windows, while this is a wrong url.
http://www.plantuml.com/plantuml/123%5Csdkfjl
The text was updated successfully, but these errors were encountered:
Fixed in v0.0.2 👍
Sorry, something went wrong.
No branches or pull requests
A bug when generating plantuml URL on windows platform
This is caused by the difference of the implements of
os.path.join
on Linux and windows.It will print
http://www.plantuml.com/plantuml/123%5Csdkfjl
on windows, while this is a wrong url.The text was updated successfully, but these errors were encountered: