1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-14 14:48:49 +00:00

Fix: cache proper function instead of its result.

This commit is contained in:
ik1ne 2019-08-20 11:51:58 +09:00
parent 5aca24537a
commit d89c4fa175

View File

@ -14,7 +14,7 @@ def get_golang_commands():
if which('go'):
get_docker_commands = cache(which('go'))(get_golang_commands())
get_docker_commands = cache(which('go'))(get_golang_commands)
@for_app('go')