Skip to content

Commit 76b9c71

Browse files
committed
Fix typo.
1 parent 385fc8a commit 76b9c71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linkedin/linkedin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def get_connections(self, totals_only=None, params=None, headers=None):
182182
count = '0'
183183
if totals_only:
184184
count = '50'
185-
url = '%s?q=viewer&start=0&count=%s' & (ENDPOINTS.CONNECTIONS, count)
185+
url = '%s?q=viewer&start=0&count=%s' % (ENDPOINTS.CONNECTIONS, count)
186186
response = self.make_request('GET', url, params=params, headers=headers)
187187
raise_for_error(response)
188188
return response.json()

0 commit comments

Comments
 (0)