[win] Scribes presumes paths to be unix -like
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Scribes |
Triaged
|
Wishlist
|
Unassigned |
Bug Description
Scribes makes the assumption to run on Linux, which is all good and well so long you are on Linux..
But on Windows everything fails..
Here the error:
PS E:\marco\
dbus daemon already exists
Traceback (most recent call last):
File "scribes.py", line 11, in <module>
main(argv[1:])
File "E:\marco\
__open(argv)
File "E:\marco\
Manager(
File "E:\marco\
Manager()
File "E:\marco\
Initializer
File "E:\marco\
self.__start()
File "E:\marco\
spawn_
gobject.GError: Failed to execute child process (No such file or directory)
I think the problem is pretty general, we have to substitute things like:
folder_ = home_folder + "/Desktop"
to
import os
folder_ = os.path.
or :
from os.path import join
folder_ = join(home_folder, "Desktop")
Related branches
tags: | added: win |
Changed in scribes: | |
status: | In Progress → Triaged |
assignee: | Mystilleef (mystilleef) → nobody |
Changed in scribes: | |
importance: | Undecided → Wishlist |
Fixed in build 507