Commit 97502a96 authored by Matthew Tretter's avatar Matthew Tretter
Browse files

Correct reference error (undefined variable)

parent 80d32b51
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }