From fe54231352b294f6492ac5a439127d02d0e3550f Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Fri, 7 Oct 2016 17:51:54 -0500 Subject: [PATCH] Corrected syntax error --- cogs/da.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/da.py b/cogs/da.py index 96c2d9a..5d564fb 100644 --- a/cogs/da.py +++ b/cogs/da.py @@ -55,7 +55,7 @@ class Deviantart: result = cache.get(da_name, None) if result is None: params['username'] = da_name - async with self.session.get(self.base_url, headers=self.headers, params) as response: + async with self.session.get(self.base_url, headers=self.headers, params=params) as response: data = await response.json() result = data['results'][0] cache[da_name] = result