Closed GoogleCodeExporter closed 9 years ago
This can be fixed by changing the function in get_gvfs_devices_and_paths() in
backup.py to the following...
def get_gvfs_devices_and_paths():
l = []
gvfs_dir = os.path.join( os.path.expanduser('~'), '.gvfs')
try:
for x in os.listdir(gvfs_dir):
mount_point = os.path.join( gvfs_dir, x )
uuid = str(uuidlib.uuid5(UUID_GVFS, mount_point))
l.append( (uuid, mount_point) )
except OSError:
os.mkdir( gvfs_dir )
pass
return l
Original comment by ArdyFa...@gmail.com
on 24 Jan 2010 at 6:45
This issue was closed by revision a61c78a863.
Original comment by pub...@kered.org
on 19 Feb 2010 at 3:54
Original issue reported on code.google.com by
ArdyFa...@gmail.com
on 17 Jan 2010 at 11:25