Running a shiney new 1.77 (x86-64 test release) under Linux 3.6.8-1-ARCH these 2 errors keep popping up.
16:24:44.211 [shipData.load.begin]: Loading ship data.
16:24:44.219 [gnustep]: 2013-01-11 16:24:44.219 oolite[7485] File NSPropertyList.m: 1012. In parsePlItem Missing semicolon in dictionary at line 932 char 19991
16:24:44.473 [gnustep]: 2013-01-11 16:24:44.473 oolite[7485] File NSPropertyList.m: 1012. In parsePlItem Missing semicolon in dictionary at line 18 char 360
gnustep errors in log
Moderators: winston, another_commander, Getafix
gnustep errors in log
Semper Dissimilis
Re: gnustep errors in log
One, or perhaps two of your OXPs, has a badly formatted openstep-style plist. Somewhere, it will have:tinker wrote:16:24:44.211 [shipData.load.begin]: Loading ship data.
16:24:44.219 [gnustep]: 2013-01-11 16:24:44.219 oolite[7485] File NSPropertyList.m: 1012. In parsePlItem Missing semicolon in dictionary at line 932 char 19991
16:24:44.473 [gnustep]: 2013-01-11 16:24:44.473 oolite[7485] File NSPropertyList.m: 1012. In parsePlItem Missing semicolon in dictionary at line 18 char 360
Code: Select all
something = "something else"
}
Code: Select all
something = "something else";
}
Unfortunately, the error tells you which line the error was on (and what character position in the file), but not which file it was in. Short of doing the usual "remove half your OXPs" trick, tracking it down further will be very difficult.