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

Sync's Directories but none of the files within #97

Open
ghost opened this issue Jan 25, 2016 · 1 comment
Open

Sync's Directories but none of the files within #97

ghost opened this issue Jan 25, 2016 · 1 comment

Comments

@ghost
Copy link

ghost commented Jan 25, 2016

I can't seem to get Gsync to sync both the directories and the files they contain. I have been giving it both verbose and recursing parameters but directories and subdirectories are all that sync.

I am sure the error is mine.

Thank you for your help!

@UbuntuRunner
Copy link

It´s a known bug (#69)

#In Ubuntu, open the following file:
sudo vi /usr/local/lib/python2.7/dist-packages/libgsync/drive/init.py

#go to:

body = {}
for k, v in properties.iteritems():
body[k] = _Drive.utf8(v)

#change to:
body = {}
for k, v in properties.iteritems():
if v is not None:
body[k] = _Drive.utf8(v)

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