We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 534c2c8 commit f567ec2Copy full SHA for f567ec2
imgurpython/client.py
@@ -552,9 +552,9 @@ def gallery_item(self, item_id):
552
response = self.make_request('GET', 'gallery/%s' % item_id)
553
return build_gallery_images_and_albums(response)
554
555
- def report_gallery_item(self, item_id):
+ def report_gallery_item(self, item_id, reason):
556
self.logged_in()
557
- return self.make_request('POST', 'gallery/%s/report' % item_id)
+ return self.make_request('POST', 'gallery/%s/report' % item_id, {'reason': reason})
558
559
def gallery_item_vote(self, item_id, vote='up'):
560
0 commit comments