]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Add missing space
authorwodim <neikokz@gmail.com>
Thu, 25 Oct 2018 12:11:23 +0000 (14:11 +0200)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 30 Oct 2018 17:04:36 +0000 (13:04 -0400)
lib/sqlalchemy/sql/base.py

index 5c884e1a0f56cbe197fb5dcdb3da8be683b74115..6b9b55753e21cdee13b3fc330e45ed053c804d85 100644 (file)
@@ -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)