You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if this is an issue specific to my laptop, my workflow or something else but... I've noticed that the workflow/update.py script runs and then stays active using up CPU % (example of the 2 processes below).
When I try to run 1. outside of Alfred , I get this error:
/usr/bin/python <path-to-workflow>/workflow/update.py check rhydlewis/search-omnifocus 1.2.3 Traceback (most recent call last): File "<path-to-workflow>/workflow/update.py", line 426, in <module> check_update(github_slug, version, prereleases) File "<path-to-workflow>/workflow/update.py", line 350, in check_update releases = get_valid_releases(github_slug, prereleases) File "<path-to-workflow>/workflow/update.py", line 322, in get_valid_releases release = _validate_release(release) File "<path-to-workflow>/workflow/update.py", line 238, in _validate_release alf3 = wf().alfred_version.major == 3 File "<path-to-workflow>/workflow/workflow.py", line 1134, in alfred_version return Version(self.alfred_env.get('version')) File "<path-to-workflow>/workflow/update.py", line 89, in __init__ self._parse(vstr) File "<path-to-workflow>/workflow/update.py", line 92, in _parse if vstr.startswith('v'): AttributeError: 'NoneType' object has no attribute 'startswith'
Running the same script with 'v1.2.3' has the same result.
Any idea what might be causing this? Probably something simple on my end but I've no clue what...
Thanks
The text was updated successfully, but these errors were encountered:
Not sure if this is an issue specific to my laptop, my workflow or something else but... I've noticed that the
workflow/update.py
script runs and then stays active using up CPU % (example of the 2 processes below).I'm using alfred-workflow v1.2.1.
Tue10pm 939:05.13 /usr/bin/python <path-to-workflow>/workflow/update.py check rhydlewis/search-omnifocus 1.2.3
Tue10pm 0:00.00 /usr/bin/python <path-to-workflow>/workflow/background.pyc __workflow_update_check
When I try to run 1. outside of Alfred , I get this error:
/usr/bin/python <path-to-workflow>/workflow/update.py check rhydlewis/search-omnifocus 1.2.3 Traceback (most recent call last):
File "<path-to-workflow>/workflow/update.py", line 426, in <module>
check_update(github_slug, version, prereleases)
File "<path-to-workflow>/workflow/update.py", line 350, in check_update
releases = get_valid_releases(github_slug, prereleases)
File "<path-to-workflow>/workflow/update.py", line 322, in get_valid_releases
release = _validate_release(release)
File "<path-to-workflow>/workflow/update.py", line 238, in _validate_release
alf3 = wf().alfred_version.major == 3
File "<path-to-workflow>/workflow/workflow.py", line 1134, in alfred_version
return Version(self.alfred_env.get('version'))
File "<path-to-workflow>/workflow/update.py", line 89, in __init__
self._parse(vstr)
File "<path-to-workflow>/workflow/update.py", line 92, in _parse
if vstr.startswith('v'):
AttributeError: 'NoneType' object has no attribute 'startswith'
Running the same script with 'v1.2.3' has the same result.
Any idea what might be causing this? Probably something simple on my end but I've no clue what...
Thanks
The text was updated successfully, but these errors were encountered: