Skip to content

Commit

Permalink
#69 Update the supported format of URL parameter for Hippocampe analyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Jul 4, 2017
1 parent 6316785 commit fa91033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzers/Hippocampe/hippo.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def run(self):

response = {}
try:
request = urllib2.Request(self.url + self.service, post_data, headers)
request = urllib2.Request('{}/hippocampe/api/v1.0/{}'.format(self.url, self.service), post_data, headers)
response = urllib2.urlopen(request)
report = json.loads(response.read())

Expand Down

0 comments on commit fa91033

Please sign in to comment.