optional argument default for get bin path removed

This commit is contained in:
kewl fft
2019-04-11 20:09:27 +01:00
parent 2766c2661c
commit 5acabdc819

2
aur.py
View File

@@ -234,7 +234,7 @@ def main():
use = 'makepkg'
# auto: select the first helper for which the bin is found
for k in use_cmd:
if module.get_bin_path(k, False):
if module.get_bin_path(k):
use = k
break
else: