Skip to content

Commit

Permalink
Merge pull request #101 from nguyenhaiac/fix/firefox.py
Browse files Browse the repository at this point in the history
Fixed firefox.py, now org-headings include url and title
  • Loading branch information
novoid authored Jun 7, 2020
2 parents c5e63ef + 62c5d0d commit d047c5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion memacs/firefox.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ 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 d047c5f

Please sign in to comment.