forked from platypush/platypush
Fixed missed assignment
This commit is contained in:
parent
02b5ec1d38
commit
e615891bf3
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ class HttpWebpagePlugin(Plugin):
|
||||||
raise RuntimeError('Could not parse JSON: {}. Response: {}'.format(str(e), response))
|
raise RuntimeError('Could not parse JSON: {}. Response: {}'.format(str(e), response))
|
||||||
|
|
||||||
if type == 'markdown':
|
if type == 'markdown':
|
||||||
self._fix_relative_links(response['content'], url)
|
response['content'] = self._fix_relative_links(response['content'], url)
|
||||||
|
|
||||||
self.logger.debug('Got response from Mercury API: {}'.format(response))
|
self.logger.debug('Got response from Mercury API: {}'.format(response))
|
||||||
title = response.get('title', '{} on {}'.format(
|
title = response.get('title', '{} on {}'.format(
|
||||||
|
|
Loading…
Reference in a new issue