fixed flake8 and pylint issue

This commit is contained in:
navjot 2020-04-17 19:39:27 +05:30
parent 5b3e9aaa14
commit 0f6c056bb7
No known key found for this signature in database
GPG Key ID: 9EE70AFD71357F1C
2 changed files with 2 additions and 2 deletions

View File

@ -360,7 +360,7 @@ def check_curses():
# unicode for just the version otherwise we get the repr form which # unicode for just the version otherwise we get the repr form which
# includes the module and class names along with the actual version. # includes the module and class names along with the actual version.
# logger.info('dialog Utility Version %s', unicode(dialog_util_version)) # logger.info('dialog Utility Version %s', unicode(dialog_util_version))
logger.info('dialog Utility Version {}'.format(str(dialog_util_version))) logger.info('dialog Utility Version %s', str(dialog_util_version))
return True return True