]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix formatting to match unit tests
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 11 Mar 2009 05:48:02 +0000 (05:48 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 11 Mar 2009 05:48:02 +0000 (05:48 +0000)
lib/sqlalchemy/orm/properties.py

index 3ae0bfbf5eabfd30582b51acf5be360471a08ee5..8999e7d8ece151b4c53b31c9d862490735669b53 100644 (file)
@@ -705,7 +705,7 @@ class RelationProperty(StrategizedProperty):
         
         if self.direction in (ONETOMANY, MANYTOONE) and self.direction == other.direction:
             raise sa_exc.ArgumentError("%s and back-reference %s are both of the same direction %r."
-                " Did you mean to set remote_side on the many-to-one side ?" % (self, other, self.direction))
+                "  Did you mean to set remote_side on the many-to-one side ?" % (self, other, self.direction))
         
     def do_init(self):
         self._get_target()