Skip to content

Commit

Permalink
fixes TypeError
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Hall committed Feb 12, 2016
1 parent 5cb78f7 commit 85e296f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion creepy/utilities/GeneralUtilities.py
Expand Up @@ -40,7 +40,7 @@ def getProjectsDir():
try:
os.makedirs(directory)
except OSError as e:
if e.errno == errno.EEXIST and os.path.isdir(dir):
if e.errno == errno.EEXIST and os.path.isdir(directory):
pass
else:
raise
Expand Down

1 comment on commit 85e296f

@pandachedev
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<HttpError 403 when requesting https://www.googleapis.com/plus/v1/people?query=elizefee965&alt=json returned "Insufficient Permission: Request had insufficient authentication scopes.">

when i try to search someone on g+, i think isn't valid anymore

Please sign in to comment.