diff options
author | Scott Dugas <scott.dugas@foundationdb.com> | 2014-10-23 13:01:23 -0400 |
---|---|---|
committer | Scott Dugas <scott.dugas@foundationdb.com> | 2014-10-23 13:01:23 -0400 |
commit | 2ce9333a24a1f894de4bf028f51eb1de28c10a3d (patch) | |
tree | c52155681ddc92d8b26aeebb19f5fc80ad9114b0 | |
parent | 9687b272bdc76dd318566f02aaafe26a6089d077 (diff) | |
download | sqlalchemy-2ce9333a24a1f894de4bf028f51eb1de28c10a3d.tar.gz |
Forgot to update usage of ex to exc_value
-rw-r--r-- | lib/sqlalchemy/testing/exclusions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/exclusions.py b/lib/sqlalchemy/testing/exclusions.py index 5ce8bcd84..c9f81c8b9 100644 --- a/lib/sqlalchemy/testing/exclusions.py +++ b/lib/sqlalchemy/testing/exclusions.py @@ -132,7 +132,7 @@ class compound(object): for fail in self.fails: if fail(config): print(("%s failed as expected (%s): %s " % ( - name, fail._as_string(config), str(ex)))) + name, fail._as_string(config), str(exc_value)))) break else: raise exc_type, exc_value, exc_traceback |