0
0
mirror of https://github.com/django/django.git synced 2024-12-01 15:42:04 +01:00

Correct reference error (undefined variable)

This commit is contained in:
Matthew Tretter 2012-04-25 21:03:03 -04:00
parent 80d32b51b0
commit 97502a96f4

View File

@ -125,7 +125,7 @@ LibFormatFoot = """
function get_format(format_type) {
var value = formats[format_type];
if (typeof(value) == 'undefined') {
return msgid;
return format_type;
} else {
return value;
}