Changeset 95

Show
Ignore:
Timestamp:
07/20/06 11:13:54 (2 years ago)
Author:
mk
Message:

Handle installation error messages properly.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/mk/cheesecake/cheesecake_index.py

    r93 r95  
    14021402        if rc: 
    14031403            self.log('*** Installation failed. Captured output:') 
    1404             for output_line in output.splitlines(): 
     1404            # Stringify output as it may be an exception. 
     1405            for output_line in str(output).splitlines(): 
    14051406                self.log(output_line) 
    14061407            self.log('*** End of captured output.')