From: wodim Date: Thu, 25 Oct 2018 12:11:23 +0000 (+0200) Subject: Add missing space X-Git-Tag: rel_1_3_0b1~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f041f1d198689cc6bc0a52377e5d50dcc07a29f0;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Add missing space --- diff --git a/lib/sqlalchemy/sql/base.py b/lib/sqlalchemy/sql/base.py index 5c884e1a0f..6b9b55753e 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)