Skip to content
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

python error when installing on Linux #6

Open
gioman opened this issue Dec 18, 2014 · 1 comment
Open

python error when installing on Linux #6

gioman opened this issue Dec 18, 2014 · 1 comment

Comments

@gioman
Copy link

gioman commented Dec 18, 2014

Traceback (most recent call last):
File "/home/giovanni/.qgis2/python/plugins/rasmover/rasmover.py", line 201, in canvasReleaseEvent
f1 = open(fileVRT, 'r')
IOError: [Errno 2] No such file or directory: '\home\giovanni.qgis2\python\plugins\rasmover\temp\original.vrt'

this is fixed by modifying rasmover.py:

...
from sys import platform as _platform
...
...
...
if _platform == "win32":
out_folder = out_folder.replace("","/")
...
...
...
if _platform == "win32":
fileVRT = fileVRT.replace("/","")

@gioman
Copy link
Author

gioman commented Dec 18, 2014

solved with #8

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant