Skip to content

Commit c37a6bc

Browse files
dnlcrlbraincore
authored andcommitted
Fixes two little typos
Thank you for everything.
1 parent bc93abf commit c37a6bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/updown.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def main():
6262
print(rootdir, 'does not exist on your filesystem')
6363
sys.exit(1)
6464
elif not os.path.isdir(rootdir):
65-
print(rootdir, 'is not a foldder on your filesystem')
65+
print(rootdir, 'is not a folder on your filesystem')
6666
sys.exit(1)
6767

6868
dbx = dropbox.Dropbox(args.token)
@@ -137,7 +137,7 @@ def list_folder(dbx, folder, subfolder):
137137
with stopwatch('list_folder'):
138138
res = dbx.files_list_folder(path)
139139
except dropbox.exceptions.ApiError as err:
140-
print('Folder listing failed for', path, '-- assumped empty:', err)
140+
print('Folder listing failed for', path, '-- assumed empty:', err)
141141
return {}
142142
else:
143143
rv = {}

0 commit comments

Comments
 (0)