Skip to content

Commit

Permalink
Misspelled attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
whikloj committed Dec 15, 2016
1 parent ead76c3 commit 1da20e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def __init__(self, inputpath, config, logger):
self.type = 'rdf'
self.destpath = quote((config.dir + self.relpath + config.ext))
response = requests.get(self.origpath, auth=config.auth)
if response.statuscode == 200:
if response.status_code == 200:
self.graph = Graph().parse(data=response.text, format="text/turtle")

# handle binary resources on disk
Expand Down

0 comments on commit 1da20e2

Please sign in to comment.