Skip to content

Commit

Permalink
Fix import paths & help URL
Browse files Browse the repository at this point in the history
- Forgot to specify './libs' in config.py
- Alfred forum URL must be Unicode
  • Loading branch information
deanishe committed Dec 3, 2017
1 parent a33e39c commit 1e79cc6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
}

DOCS_URL = 'https://github.com/deanishe/alfred-fakeum/blob/master/README.md'
HELP_URL = 'https://www.alfredforum.com/topic/5319-fakeum-—-generate-fake-test-datasets-in-alfred/'
HELP_URL = u'https://www.alfredforum.com/topic/5319-fakeum-—-generate-fake-test-datasets-in-alfred/'
ISSUE_URL = 'https://github.com/deanishe/alfred-fakeum/issues'
UPDATE_SETTINGS = {'github_slug': 'deanishe/alfred-fakeum'}

Expand Down
3 changes: 2 additions & 1 deletion src/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ def main(wf):
if __name__ == '__main__':
wf = Workflow3(default_settings=DEFAULT_SETTINGS,
update_settings=UPDATE_SETTINGS,
help_url=HELP_URL)
help_url=HELP_URL,
libraries=['./libs'])
log = wf.logger
sys.exit(wf.run(main))
9 changes: 4 additions & 5 deletions src/info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,7 @@
</dict>
</array>
<key>E4106CE4-7B7A-41AC-896D-40160A37952C</key>
<array>
</array>
<array/>
<key>F01C9E5F-D701-41D1-8FC2-71EE6DD64371</key>
<array>
<dict>
Expand Down Expand Up @@ -640,7 +639,7 @@ vars={allvars}
<key>spaces</key>
<string></string>
<key>url</key>
<string>{var:action}</string>
<string>{query}</string>
<key>utf8</key>
<true/>
</dict>
Expand Down Expand Up @@ -1009,12 +1008,12 @@ vars={allvars}
<key>LIPSUM_SENTENCES</key>
<string>3</string>
<key>SHOW_NOTIFICATIONS</key>
<string>1</string>
<string>0</string>
<key>keyword</key>
<string>fake</string>
</dict>
<key>version</key>
<string>2.0</string>
<string>2.0.1</string>
<key>webaddress</key>
<string></string>
</dict>
Expand Down

0 comments on commit 1e79cc6

Please sign in to comment.