summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIrina Truong <i.chernyavska@gmail.com>2018-07-19 18:51:21 -0700
committerGitHub <noreply@github.com>2018-07-19 18:51:21 -0700
commit992deefbba7d71b27467e656e88adf37382c8c62 (patch)
treed15e5757fbff864b23ca0c6aac8ae5305dc8f66e
parentb536c100e84dd27e4e6208dc42737810ed015d44 (diff)
parent8da6f4178500f64092876c386976d652a0806c6d (diff)
Merge pull request #911 from dbcli/j-bennet/fix-db-list
Fixes "object has no attribute watch_command"
-rw-r--r--changelog.rst6
-rw-r--r--pgcli/main.py1
2 files changed, 6 insertions, 1 deletions
diff --git a/changelog.rst b/changelog.rst
index 9464679a..a3af9414 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -1,7 +1,10 @@
Upcoming
========
-TODO
+Bug fixes:
+
+* Fix for missing keyring. (Thanks: `Kenny Do`_)
+* Fix for "-l" Flag Throws Error (#909). (Thanks: `Irina Truong`_)
1.10.0
======
@@ -845,3 +848,4 @@ Improvements:
.. _`Alexandr Korsak`: https://github.com/oivoodoo
.. _`Saif Hakim`: https://github.com/saifelse
.. _`Artur Balabanov`: https://github.com/arturbalabanov
+.. _`Kenny Do`: https://github.com/kennydo
diff --git a/pgcli/main.py b/pgcli/main.py
index 3d25a05d..6bdf9dff 100644
--- a/pgcli/main.py
+++ b/pgcli/main.py
@@ -136,6 +136,7 @@ class PGCli(object):
self.never_passwd_prompt = never_passwd_prompt
self.pgexecute = pgexecute
self.dsn_alias = None
+ self.watch_command = None
# Load config.
c = self.config = get_config(pgclirc_file)