Projet

Général

Profil

0001-ezt-remove-leftover-StringType-reference-31440.patch

Frédéric Péters, 15 mars 2019 10:26

Télécharger (777 octets)

Voir les différences:

Subject: [PATCH] ezt: remove leftover StringType reference (#31440)

 wcs/qommon/ezt.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
wcs/qommon/ezt.py
555 555
      list = _get_value(valref, ctx)
556 556
    except UnknownReference:
557 557
      return
558
    if isinstance(list, StringType):
558
    if isinstance(list, basestring):
559 559
      raise NeedSequenceError()
560 560
    refname = valref[0]
561 561
    ctx.for_index[refname] = idx = [ list, 0 ]
562
-