remove bogus length check in expand() to fix meta-opie
authorPhil Blundell <philb@gnu.org>
Tue, 1 Jun 2004 23:22:38 +0000 (23:22 +0000)
committerPhil Blundell <philb@gnu.org>
Tue, 1 Jun 2004 23:22:38 +0000 (23:22 +0000)
bin/oe/data.py

index e6b1ee6..bbd22a1 100644 (file)
@@ -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