Skip to content

Commit

Permalink
Merge pull request #98 from alex-a-soto/alex_chrome
Browse files Browse the repository at this point in the history
Fix chrome.py output to include url and title for org headings.
  • Loading branch information
novoid authored May 27, 2020
2 parents dbeaee4 + 71696e9 commit e5c9e3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion memacs/chrome.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def _handle_url(self, params):
properties.add('URL', params['url'])
properties.add('VISIT_COUNT', params['visit_count'])

output = ""
output = OrgFormat.link(params['url'], params['title'])
try:
output = self._args.output_format.decode('utf-8').format(**params)
except Exception:
Expand Down

0 comments on commit e5c9e3c

Please sign in to comment.