Commit e81c9766 by James Tanner

Fix pep8 errors in unarchive module

parent 52032b80
......@@ -96,7 +96,7 @@ class _tgzfile(object):
def is_unarchived(self):
dirof = os.path.dirname(self.dest)
destbase = os.path.basename(self.dest)
cmd = 'tar -v -C "%s" --diff -%sf "%s"' % (self.dest, self.zipflag,self.src )
cmd = 'tar -v -C "%s" --diff -%sf "%s"' % (self.dest, self.zipflag,self.src)
rc, out, err = self.module.run_command(cmd)
bool = True if rc == 0 else False
return dict( bool = bool, rc = rc , out = out, err = err, cmd = cmd)
......@@ -138,7 +138,7 @@ class _tarxz(_tgzfile):
self.zipflag = 'J'
# try handlers in order and return the one that works or bail if none work
def pick_handler (src,dest,module):
def pick_handler(src,dest,module):
handlers = [_tgzfile, _zipfile, _tarfile, _tarbzip, _tarxz]
for handler in handlers:
obj = handler(src,dest,module)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment