You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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("/","")
The text was updated successfully, but these errors were encountered:
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("/","")
The text was updated successfully, but these errors were encountered: