summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaif Hakim <saif@benchling.com>2018-07-04 01:28:24 -0700
committerSaif Hakim <saif@benchling.com>2018-07-04 01:36:50 -0700
commit80957c59c51951c09dc0dd02ed762e8f4bd4ef2a (patch)
treeaff8553cd6f60b2a7691343fcb63980bcc1f3f31
parent5cdb15199985f9e79f434aa1af302d4ab0523fdc (diff)
Fix lint, update AUTHORS, and changelog
-rw-r--r--AUTHORS1
-rw-r--r--changelog.rst2
-rw-r--r--pgcli/pgexecute.py2
3 files changed, 3 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index d9631d64..12d33c99 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -81,6 +81,7 @@ Contributors:
* Rishi Ramraj
* Matthieu Guilbert
* Alexandr Korsak
+ * Saif Hakim
Creator:
diff --git a/changelog.rst b/changelog.rst
index 266b6a69..7c505454 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -20,7 +20,7 @@ Internal changes:
Bug Fixes:
----------
* Disable pager when using \watch (#837). (Thanks: `Jason Ribeiro`_)
-* Don't offer to reconnect when we can't change a param in realtime (#807). (Thanks: `Amjith Ramanujam`_)
+* Don't offer to reconnect when we can't change a param in realtime (#807). (Thanks: `Amjith Ramanujam`_ and `Saif Hakim`_)
* Make keyring optional. (Thanks: `Dick Marinus`_)
* Fix ipython magic connection (#891). (Thanks: `Irina Truong`_)
* Fix not enough values to unpack. (Thanks: `Matthieu Guilbert`_)
diff --git a/pgcli/pgexecute.py b/pgcli/pgexecute.py
index 21554580..58986aca 100644
--- a/pgcli/pgexecute.py
+++ b/pgcli/pgexecute.py
@@ -353,7 +353,7 @@ class PGExecute(object):
def _must_raise(self, e):
"""Return true if e is an error that should not be caught in ``run``.
-
+
An uncaught error will prompt the user to reconnect; as long as we
detect that the connection is stil open, we catch the error, as
reconnecting won't solve that problem.