pylint W0622(redefined-builtin)

This commit is contained in:
Carlos Meza 2018-02-25 06:36:17 +00:00
parent d86f9e94b5
commit 149173ef62
2 changed files with 1 additions and 2 deletions

View file

@ -5,7 +5,6 @@ from bootstrapvz.common.tasks import apt
from bootstrapvz.common.exceptions import TaskError from bootstrapvz.common.exceptions import TaskError
from bootstrapvz.common.releases import jessie, wheezy, stretch from bootstrapvz.common.releases import jessie, wheezy, stretch
from bootstrapvz.common.tools import sed_i, log_check_call, rel_path from bootstrapvz.common.tools import sed_i, log_check_call, rel_path
from __builtin__ import str
ASSETS_DIR_STRETCH = rel_path(__file__, 'assets/gpg-keyrings-PC1/stretch') ASSETS_DIR_STRETCH = rel_path(__file__, 'assets/gpg-keyrings-PC1/stretch')

View file

@ -22,7 +22,7 @@ class CallbackServer(object):
self.thread.start() self.thread.start()
return self return self
def __exit__(self, type, value, traceback): def __exit__(self, exception_type, exception_value, traceback):
log.debug('Shutting down callback server') log.debug('Shutting down callback server')
self.daemon.shutdown() self.daemon.shutdown()
self.thread.join() self.thread.join()