Subject: Re: [nmr_sparky] Re: peaktable using heigths
From: Thomas Goddard
Date: May 10, 2006

Previous: 122 Next: 126


Hi Markus,

Unfortunately the unmodified peak table extension in Sparky 3.110 gives
the same error you report when saving a file, and the list text has
parentheses and extra junk included.

The solution is to use Sparky 3.112 that fixed this problem. That
version appears further down on the Sparky web page than the 3.110 version.
It is a release candidate, while 3.110 is still the official release.

If you would like to just stick with 3.110 you can modify one line of
peaktable.py to fix the bug. Change line 152 removing an extra set of
parentheses, from

self.peak_list.append((line, assignment))

to

self.peak_list.append(line, assignment)

Good luck,

Tom