diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-01-29 17:10:18 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-01-29 17:10:18 -0600 |
commit | 245e6d83a618f524be0c71d071374ddc6da291f0 (patch) | |
tree | 8812222be93d2543ff9bfdf967872e4dd1ef6dc7 /mediagoblin/tests/test_sql_migrations.py | |
parent | 9303d47df0ec4779e692529a2791aa2b98e3bc70 (diff) | |
download | mediagoblin-245e6d83a618f524be0c71d071374ddc6da291f0.tar.lz mediagoblin-245e6d83a618f524be0c71d071374ddc6da291f0.tar.xz mediagoblin-245e6d83a618f524be0c71d071374ddc6da291f0.zip |
CollectingPrinter is a class, not a function!
Diffstat (limited to 'mediagoblin/tests/test_sql_migrations.py')
-rw-r--r-- | mediagoblin/tests/test_sql_migrations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/tests/test_sql_migrations.py b/mediagoblin/tests/test_sql_migrations.py index 7a49a4a5..7dfc4b26 100644 --- a/mediagoblin/tests/test_sql_migrations.py +++ b/mediagoblin/tests/test_sql_migrations.py @@ -489,7 +489,7 @@ def _insert_migration3_objects(session): session.commit() -def CollectingPrinter(object): +class CollectingPrinter(object): def __init__(self): self.collection = [] |