Fix delete_tag and maybe other methods

This commit is contained in:
Diego
2018-06-02 16:09:06 +02:00
parent e30e5393f0
commit 79bc0da3a4

View File

@@ -76,7 +76,7 @@ class Wallabag(object):
elif method == 'patch':
resp = await self.aio_sess.patch(full_path, data=params)
elif method == 'delete':
resp = await self.aio_sess.delete(full_path, headers=params)
resp = await self.aio_sess.delete(full_path, params=params, headers=params)
elif method == 'put':
resp = await self.aio_sess.put(full_path, data=params)