Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hackathon_starter/hackathon/scripts/googlePlus.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def get_access_token(self, code, state):

Parameters:
code: string
- The code is retrived from the authorization URL parameter
- The code is retrieved from the authorization URL parameter
to obtain access token.
state: string
- The unique session ID.
Expand Down Expand Up @@ -106,4 +106,4 @@ def get_user_info(self):
if response.status_code != 200:
raise(Exception('Invalid response, response code {c}'.format(c=response.status_code)))

return response.json()
return response.json()
2 changes: 1 addition & 1 deletion hackathon_starter/hackathon/scripts/scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

def fetchHTML(url):
'''
Returns HTML retrived from a url.
Returns HTML retrieved from a url.

Parameters:
url: String
Expand Down