Modify ↓
Opened 16 years ago
Closed 16 years ago
#345 closed defect (fixed)
slave.py calls sys.exit() without importing sys
Reported by: | ole@… | Owned by: | cmlenz |
---|---|---|---|
Priority: | critical | Milestone: | 0.6 |
Component: | Build slave | Version: | dev |
Keywords: | Cc: | laurent.dore@… | |
Operating System: | Linux |
Description
In slave.py a call to sys.exit() is made without importing sys first. This fails on python 2.4 and 2.5.
Attachments (0)
Change History (2)
comment:1 Changed 16 years ago by laurent.dore@…
- Cc laurent.dore@… added
comment:2 Changed 16 years ago by dfraser
- Resolution set to fixed
- Status changed from new to closed
Thanks - should be fixed by r589
Note: See
TracTickets for help on using
tickets.
This also fails on python 2.6 / Windows
Adding import sys before the call to sys.exit fixes it.