Added missing attributes to RunResult

This commit is contained in:
Jedrzej Nowak 2015-10-02 10:37:28 +02:00
parent fb0b6df1d0
commit c392085833

View File

@ -64,6 +64,9 @@ class SolarRunResult(object):
failed = SolarRunResultWrp('failed')
stdout = SolarRunResultWrp('stdout')
stderr = SolarRunResultWrp('stderr')
succeeded = SolarRunResultWrp('succeeded')
command = SolarRunResultWrp('command')
real_command = SolarRunResultWrp('real_command')
return_code = SolarRunResultWrp('return_code')
def __str__(self):