Changeset 5253706ae2c35f989c2eb18ee544f2ac3719b64a


Ignore:
Timestamp:
01/20/12 11:31:42 (4 months ago)
Author:
Luper Rouch <luper.rouch@…>
Children:
bd55f56af0291ed5ef3bd5679d828f48f0d73db9
Parents:
672fd040f6413d28c4cfa7831376d377abc57bc9
git-author:
Luper Rouch <luper.rouch@…> (01/20/12 10:54:30)
git-committer:
Luper Rouch <luper.rouch@…> (01/20/12 11:31:42)
Message:

fixed a bug in pyflu.command

Location:
pyflu/pyflu
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pyflu/pyflu/__init__.py

    r01f3d34 r5253706  
    55 
    66def version(): 
    7     return "0.9.3" 
     7    return "0.9.4" 
    88 
  • pyflu/pyflu/command.py

    rdd68592 r5253706  
    2323        if subprocess.call([self.cmd], env=env, cwd=self.cwd,  
    2424                shell=True, stdout=stdout, stderr=stderr) and stop_on_errors: 
    25             raise self.error_class("command '%s' returned %i" %  
    26                     (self.cmd, process.returncode)) 
     25            raise self.error_class("error executing '%s'" % self.cmd) 
    2726 
    2827    def __repr__(self): 
Note: See TracChangeset for help on using the changeset viewer.