Skip to content

Commit 6ebd2b6

Browse files
authored
Merge pull request googleworkspace#37 from gsuitedevs/asrivas-patch-1
Fix Drive Quickstart error on File names with unicode chars
2 parents 7dfd138 + af2289d commit 6ebd2b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drive/quickstart/quickstart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def main():
4242
else:
4343
print('Files:')
4444
for item in items:
45-
print('{0} ({1})'.format(item['name'], item['id']))
45+
print(u'{0} ({1})'.format(item['name'], item['id']))
4646

4747
if __name__ == '__main__':
4848
main()

0 commit comments

Comments
 (0)