fix unshare

unshare requires some sectionId in order to run successfully. Adding all sectionIds.
This commit is contained in:
blacktwin 2017-10-23 21:33:06 -04:00 committed by GitHub
parent bdfa41007a
commit 98dfb06ae4

View File

@ -70,7 +70,7 @@ if __name__ == "__main__":
if opts.share == 'share':
share(opts.user, opts.libraries)
elif opts.share == 'unshare':
unshare(opts.user, opts.libraries)
unshare(opts.user, sections_lst)
elif opts.share == 'share_all':
share(opts.user, sections_lst)
else: