| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2015 The Chromium Authors. All rights reserved. | 2 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 | 6 |
| 7 import collections | 7 import collections |
| 8 import json | 8 import json |
| 9 | 9 |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 'skiabot-shuttle-ubuntu12-004': | 21 'skiabot-shuttle-ubuntu12-004': |
| 22 SlaveInfo('root', '192.168.1.134', DEFAULT_PORT), | 22 SlaveInfo('root', '192.168.1.134', DEFAULT_PORT), |
| 23 'default': | 23 'default': |
| 24 SlaveInfo('nouser', 'noip', 'noport'), | 24 SlaveInfo('nouser', 'noip', 'noport'), |
| 25 } | 25 } |
| 26 | 26 |
| 27 | 27 |
| 28 if __name__ == '__main__': | 28 if __name__ == '__main__': |
| 29 print json.dumps(SLAVE_INFO) # pragma: no cover | 29 print json.dumps(SLAVE_INFO) # pragma: no cover |
| 30 | 30 |
| OLD | NEW |