From 316e69b50c94795322f9bebd476024c4850b7e82 Mon Sep 17 00:00:00 2001 From: Phil Blundell Date: Tue, 1 Jun 2004 23:22:38 +0000 Subject: remove bogus length check in expand() to fix meta-opie --- bin/oe/data.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/bin/oe/data.py b/bin/oe/data.py index e6b1ee6a6..bbd22a1be 100644 --- a/bin/oe/data.py +++ b/bin/oe/data.py @@ -230,9 +230,6 @@ def expand(s, d = _data, varname = None): olds = s s = __expand_var_regexp__.sub(var_sub, s) s = __expand_python_regexp__.sub(python_sub, s) - if len(s)>2048: - debug(1, "expanded string too long") - return s if s == olds: break return s -- cgit 1.2.3-korg