diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-12-02 08:30:47 +0100 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-12-05 14:14:14 +0100 |
commit | d13fac5935bb3fe573dc9a79e06b8cffde37712e (patch) | |
tree | 0333a6fd3380a1e85180591641a61597797ed8f7 /functest/utils/functest_vacation.py | |
parent | dc733c31177b0ffdc4c30b9c4801b765909f1c50 (diff) |
Fix Pep8 issues related to \
JIRA: FUNCTEST-630
Change-Id: I2b6d3bec67c6fe290fb2ad795a54a2dd2e3c7a0b
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'functest/utils/functest_vacation.py')
-rw-r--r-- | functest/utils/functest_vacation.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/functest/utils/functest_vacation.py b/functest/utils/functest_vacation.py index 6c7312fa0..c2e40b072 100644 --- a/functest/utils/functest_vacation.py +++ b/functest/utils/functest_vacation.py @@ -1,6 +1,6 @@ from os import environ -from curses import initscr, curs_set, newwin, endwin,\ - KEY_RIGHT, KEY_LEFT, KEY_DOWN, KEY_UP +from curses import initscr, curs_set, newwin, endwin +from curses import KEY_RIGHT, KEY_LEFT, KEY_DOWN, KEY_UP from random import randrange @@ -48,6 +48,6 @@ def main(): print '\nSnake.PY-26lines by Kris Cieslak (defaultset.blogspot.com).' print 'OPNFV adaptation by Functest dream team.' - print 'Thanks for playing, your score: ' + \ - str(len(snake) - len(body) - 1) + '.' + score = str(len(snake) - len(body) - 1) + print ('Thanks for playing, your score: %s.' % score) print 'Find and fix more bugs in your real OPNFV setup!\n' |