Bug #273
Whitespace in addon meta data
Start date:
2006-03-26
% Done:
100%
Description
There is currently a bug in the parsing of addon meta
data in Snowberry.
This is ok:
implicit optionname1 (
option: -pwadtex
)
This causes Snowberry to report an unknown problem in
the addon meta data:
implicit optionname1 ( option: -pwadtex )
Labels: Snowberry
History
#1 Updated by skyjake over 18 years ago
Logged In: YES
user_id=717323
The real error that Snowberry should report in this case is that there is an
unterminated parentheses. Remember, the syntax rules are that when a colon
is used, the rest of the line is interpreted as the value regardless of its
content.
In this particular case, you should use a =:
implicit optionname1 ( option = -pwadtex )
#2 Updated by danij over 18 years ago
Logged In: YES
user_id=849456
Doh, yes of course.
I should spend some time learning Python I guess.