fut
fut copied to clipboard
Error
Hello,
I get below error from today, do you also get it ?
Python 2.7.10 (default, Feb 7 2017, 00:08:15) [GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.34)] on darwin Type "help", "copyright", "credits" or "license" for more information.
import fut Traceback (most recent call last): File "
", line 1, in File "fut/init.py", line 34, in from .core import Core File "fut/core.py", line 995 yield results SyntaxError: 'return' with argument inside generator
Change fut/core.py", line 995 from
yield results to
return results can temporarily fix this issue
Thx ! it works
@sfai05
You probably don't need this method at all but making this change breaks logic here - searchAll won't return all results, just first page. Fix for this is planned for stable release.