Description
Looks like python redis example fails due to design python 2. But for python 3 run raised the following error:
File "/var/lib/teamcity/data/work/17028f058b6ef75f/i2test/var/suite-examples/gg-pro-fab/examples/redis/redis-example.py", line 32 print 'Value for "k1": %s' % r.get('k1') ^ SyntaxError: invalid syntax
The suggested fix is to put brackets for print calls:
print 'Value for "k1": %s' % r.get('k1')
print('Value for "k1": %s' % r.get('k1'))
Attachments
Issue Links
- links to