From 42e86af91fb1ddfb5c5d4d357f825ad3ccfead42 Mon Sep 17 00:00:00 2001 From: Luis Nell Date: Thu, 11 Aug 2011 15:08:01 +0300 Subject: [PATCH] fixed typo --- compressor/management/commands/compress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compressor/management/commands/compress.py b/compressor/management/commands/compress.py index a3160a8..86e27e6 100644 --- a/compressor/management/commands/compress.py +++ b/compressor/management/commands/compress.py @@ -197,7 +197,7 @@ class Command(NoArgsCommand): try: result = node.render(context, forced=True) except Exception, e: - raise CommandError("An error occured during rending: " + raise CommandError("An error occured during rendering: " "%s" % e) cache.set(key, result, settings.COMPRESS_OFFLINE_TIMEOUT) context.pop()