Signal 11
also programmed for conversational english
sim667 I think it's just that you're using python 2 and the f-strings came in with python 3.
Code:
$ python2
Python 2.7.16 (default, Mar 4 2019, 15:29:09)
[GCC 8.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> f'GET_EPISODES: Show Blacklisted: {1}'
File "<stdin>", line 1
f'GET_EPISODES: Show Blacklisted: {1}'
^
SyntaxError: invalid syntax
>>>
$ python3
Python 3.7.3rc1 (default, Mar 13 2019, 11:01:15)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> f'GET_EPISODES: Show Blacklisted: {1}'
'GET_EPISODES: Show Blacklisted: 1'
>>>
