Skip to content

Commit

Permalink
Fix bug in given sample code
Browse files Browse the repository at this point in the history
  • Loading branch information
slgobinath committed Feb 13, 2018
1 parent 01d9a06 commit fc9eb0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ sudo sh install_uget_integrator.sh
Relative path should work without any problems. However, we recommend to use relative paths in the following format to avoid *unexpected* runtime problems. In this format, you need to replace `"..\\uget\\bin\\uget.exe"` by the actual relative path of `uget.exe`.
```python
UGET_COMMAND = join(os.path.realpath(__file__), "..\\uget\\bin\\uget.exe")
UGET_COMMAND = join(os.path.dirname(os.path.realpath(__file__)), "..\\uget\\bin\\uget.exe")
```
Above example assumes the following folder structure:
```
Expand Down

0 comments on commit fc9eb0f

Please sign in to comment.