Changed to be better, hopefully. We really need to find out where this losing of channel values is happening.

This commit is contained in:
Jeremy Fincher 2004-09-30 22:13:47 +00:00
parent d4a36dcb2f
commit 1ea5e55a8e
1 changed files with 2 additions and 6 deletions

View File

@ -100,12 +100,8 @@ def close(registry, filename, annotated=True, helpOnceOnly=False):
if hasattr(value, 'value'):
if value._showDefault:
lines.append('#\n')
try:
original = value.value
value.value = value._default
lines.append('# Default value: %s\n' % value)
finally:
value.value = original
x = value.__class__(value._default, value._help)
lines.append('# Default value: %s\n' % x)
lines.append('###\n')
fd.writelines(lines)
if hasattr(value, 'value'): # This lets us print help for non-valued.