From dc74eef96912f83788c0bf87bdcf5a57011e62a8 Mon Sep 17 00:00:00 2001 From: Martin Baeuml Date: Tue, 7 Jun 2011 16:34:13 +0200 Subject: [PATCH] fix container names in default config --- sloth/conf/default_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sloth/conf/default_config.py b/sloth/conf/default_config.py index 08cc505..4b891fe 100644 --- a/sloth/conf/default_config.py +++ b/sloth/conf/default_config.py @@ -21,8 +21,8 @@ INSERTERS = { } CONTAINERS = ( - ('*.json', 'sloth.annotations.container.JSONContainer'), - ('*.yaml', 'sloth.annotations.container.YAMLContainer'), + ('*.json', 'sloth.annotations.container.JsonContainer'), + ('*.yaml', 'sloth.annotations.container.YamlContainer'), ('*.pickle', 'sloth.annotations.container.PickleContainer'), )