Skip to content

Commit

Permalink
Add help URL
Browse files Browse the repository at this point in the history
  • Loading branch information
deanishe committed Dec 26, 2014
1 parent 2318554 commit 1148f22
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Binary file modified Convert.alfredworkflow
Binary file not shown.
1 change: 1 addition & 0 deletions src/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
'currencies.json'), 'rb') as fp:
CURRENCIES = json.load(fp)

HELP_URL = 'https://github.com/deanishe/alfred-convert/issues'

ICON_UPDATE = 'icons/update-available.png'
ICON_CURRENCY = 'icons/money.png'
Expand Down
6 changes: 4 additions & 2 deletions src/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
ICON_UPDATE,
UPDATE_SETTINGS, DEFAULT_SETTINGS,
BUILTIN_UNIT_DEFINITIONS,
CUSTOM_DEFINITIONS_FILENAME)
CUSTOM_DEFINITIONS_FILENAME,
HELP_URL)

log = None

Expand Down Expand Up @@ -190,6 +191,7 @@ def main(wf):

if __name__ == '__main__':
wf = Workflow(update_settings=UPDATE_SETTINGS,
default_settings=DEFAULT_SETTINGS)
default_settings=DEFAULT_SETTINGS,
help_url=HELP_URL)
log = wf.logger
sys.exit(wf.run(main))

0 comments on commit 1148f22

Please sign in to comment.