From 2a63414ccd9b31b7dc6353786824aefe3ef1873e Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Wed, 3 Oct 2007 22:12:22 +0000 Subject: [PATCH] Fixed #5674 -- Fixed a typo in a docstring from [6446]. Thanks, ski.whitespace@gmail.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6448 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/translation/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/utils/translation/__init__.py b/django/utils/translation/__init__.py index 18071b9683..9ca7419e1e 100644 --- a/django/utils/translation/__init__.py +++ b/django/utils/translation/__init__.py @@ -106,7 +106,7 @@ def deactivate_all(): return real_deactivate_all() def string_concat(*strings): - """" + """ Lazy variant of string concatenation, needed for translations that are constructed from multiple parts. """