Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ APC Network Power Management Controller

Payton Quackenbush

---

**NOTE**: as of 2017, this project has been [replaced by Sebastien Celles' APC](https://github.com/scls19fr/APC).

Please see the _NEW_ version of the Python APC project here:
- https://github.com/scls19fr/APC
- This contains outlet status, better Python integration, and other improvements.

---

[![Build Status](https://travis-ci.org/quackenbush/APC.svg?branch=master)](https://travis-ci.org/quackenbush/APC)

Controls rebooting of APC network PDU switches with 'telnet' network interface.
Expand Down
2 changes: 1 addition & 1 deletion apc.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def connect(self):

header = self.child.before

match = APC_VERSION_PATTERN.search(header)
match = APC_VERSION_PATTERN.search(str(header))

if not match:
raise Exception('Could not parse APC version')
Expand Down