From e728f2bf89c351e6ac9d18fcecbea16a8c01f2b3 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Fri, 13 Sep 2013 12:48:50 -0400 Subject: [PATCH] update the changelog --- CHANGELOG.rst | 7 +++++++ remoto/connection.py | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 CHANGELOG.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..9e12ec0 --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,7 @@ + +0.0.2 +----- +* Allow a context manager for running one-off commands with the connection + object. +* ``process.run`` can now take in a timeout value so that it does not hang in + remote processes diff --git a/remoto/connection.py b/remoto/connection.py index 9d9370e..e0045c3 100644 --- a/remoto/connection.py +++ b/remoto/connection.py @@ -27,6 +27,10 @@ class Connection(object): self.gateway.exit() +# +# FIXME this is getting ridiculous +# + class FakeRemoteLogger: def error(self, *a, **kw): @@ -37,3 +41,6 @@ class FakeRemoteLogger: def info(self, *a, **kw): pass + + def warning(self, *a, **kw): + pass -- 2.47.3