Skip to content

Commit e012a51

Browse files
committed
Ensure HTTP method case uniformity
Box's validate_v1_path http method name should be lowercase.
1 parent f2edb4d commit e012a51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

waterbutler/providers/box/provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ async def validate_v1_path(self, path: str, **kwargs) -> WaterButlerPath:
5353
raise exceptions.NotFoundError(str(path))
5454

5555
response = await self.make_request(
56-
'get',
56+
'GET',
5757
self.build_url(files_or_folders, obj_id, fields='id,name,path_collection'),
5858
expects=(200, 404,),
5959
throws=exceptions.MetadataError,

0 commit comments

Comments
 (0)