From ea962b6259f689995cbb3ceabae1f0edbc045122 Mon Sep 17 00:00:00 2001 From: Matthew Tretter Date: Tue, 4 Dec 2012 22:48:02 -0500 Subject: [PATCH] Correct argument order Related: 2cc72cd --- tests/imagespecs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/imagespecs.py b/tests/imagespecs.py index 536db7a..8a69975 100644 --- a/tests/imagespecs.py +++ b/tests/imagespecs.py @@ -5,4 +5,4 @@ class TestSpec(ImageSpec): pass -register.spec(TestSpec, 'testspec') +register.spec('testspec', TestSpec)