[ci] Try to fix failing appveyor python builds

This commit is contained in:
Olly Betts 2022-03-20 18:42:50 +13:00
commit 029ddab8b5
20 changed files with 40 additions and 39 deletions

View file

@ -1007,7 +1007,7 @@ public:
b = First(baselist);
while (b.item) {
String *bname = Getattr(b.item, "name");
if ((!bname) || GetFlag(b.item, "feature:ignore") || (!Getattr(b.item, "module"))) {
if (!bname || GetFlag(b.item, "feature:ignore") || !Getattr(b.item, "module")) {
b = Next(b);
continue;
}