diff options
author | wodim <neikokz@gmail.com> | 2018-10-25 14:11:23 +0200 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2018-10-30 13:04:36 -0400 |
commit | f041f1d198689cc6bc0a52377e5d50dcc07a29f0 (patch) | |
tree | 425fff71a2c39b8f0670adfcc8c9f4e8adfe7bf4 /lib/sqlalchemy/sql/base.py | |
parent | 83864ffe634bb1e3e9e530fbe51c03a186799110 (diff) | |
download | sqlalchemy-f041f1d198689cc6bc0a52377e5d50dcc07a29f0.tar.gz |
Add missing space
Diffstat (limited to 'lib/sqlalchemy/sql/base.py')
-rw-r--r-- | lib/sqlalchemy/sql/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/base.py b/lib/sqlalchemy/sql/base.py index 5c884e1a0..6b9b55753 100644 --- a/lib/sqlalchemy/sql/base.py +++ b/lib/sqlalchemy/sql/base.py @@ -378,7 +378,7 @@ class Executable(Generative): e = self.bind if e is None: label = getattr(self, 'description', self.__class__.__name__) - msg = ('This %s is not directly bound to a Connection or Engine.' + msg = ('This %s is not directly bound to a Connection or Engine. ' 'Use the .execute() method of a Connection or Engine ' 'to execute this construct.' % label) raise exc.UnboundExecutionError(msg) |