pylint cleanup

This commit is contained in:
Thomas Jackson 2015-04-08 08:09:30 -07:00
parent 5c7df1431b
commit 6b3d1bcb76

View File

@ -1,5 +1,10 @@
# -*- coding: utf-8 -*-
import logging
from salt.transport.client import ReqChannel from salt.transport.client import ReqChannel
log = logging.getLogger(__name__)
class LocalChannel(ReqChannel): class LocalChannel(ReqChannel):
''' '''
@ -22,7 +27,7 @@ class LocalChannel(ReqChannel):
'data': ''.join(f.readlines()), 'data': ''.join(f.readlines()),
'dest': load['path'], 'dest': load['path'],
} }
print 'returning', ret print ('returning', ret)
else: else:
# end of buffer # end of buffer
ret = { ret = {