Changeset 176:31fba426b261
- Timestamp:
- 11/26/08 03:27:19 (3 years ago)
- Author:
- cfreeze@…
- Branch:
- CAP_1.1
- Message:
-
fix formatting
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r142
|
r176
|
|
| 172 | 172 | if(dev == "execution"): |
| 173 | 173 | self.devices.append(ExecutionAlertDevice(exeInfo,alerts,areas)) |
| | 174 | print self.__str__() |
| 174 | 175 | |
| 175 | 176 | def __str__(self): |
| … |
… |
|
| 177 | 178 | str += "\n\t".join(self.__states) |
| 178 | 179 | |
| 179 | | str += "\nProxy: %i\n" % self.__proxy |
| 180 | | str += "\nHistory: %i\n" % self.max_history |
| | 180 | str += "\nProxy: %s" % self.proxy |
| | 181 | str += "\nHistory: %i" % self.max_history |
| 181 | 182 | str += "\nDevices: %i\n" % len(self.devices) |
| 182 | 183 | |