From bd661157f98e0b41424815d3892137d5e3072e80 Mon Sep 17 00:00:00 2001 From: scls19fr Date: Wed, 4 Oct 2017 16:53:37 +0200 Subject: [PATCH 1/2] Fix Python 3 --- apc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apc.py b/apc.py index 5633e43..fcc3d59 100755 --- a/apc.py +++ b/apc.py @@ -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') From ea516c3397816e4a8460f82b21dfc15f132a1bb4 Mon Sep 17 00:00:00 2001 From: Payton Quackenbush Date: Wed, 18 Oct 2017 10:42:56 -0500 Subject: [PATCH 2/2] Pointer to new project --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 8d51467..c409c37 100644 --- a/README.md +++ b/README.md @@ -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.