diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-06-12 20:54:51 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-06-15 21:44:05 -0400 |
| commit | 40a343128043b7d2ebe3a770dfae887e969fc5e0 (patch) | |
| tree | 09ccd869a8860147062a07107ce39b7bf021daa0 /bin/gen-input-inx | |
| parent | 28e8efebf2a721239fa996865f9ef228e3521121 (diff) | |
add output INX generator
Diffstat (limited to 'bin/gen-input-inx')
| -rwxr-xr-x | bin/gen-input-inx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/gen-input-inx b/bin/gen-input-inx index 5f21ce84..6351d062 100755 --- a/bin/gen-input-inx +++ b/bin/gen-input-inx @@ -21,9 +21,9 @@ def libembroidery_input_formats(): while(curFormat): extension = embFormat_extension(curFormat) description = embFormat_description(curFormat) - writerState = embFormat_readerState(curFormat) + reader_state = embFormat_readerState(curFormat) - if writerState.strip() and embFormat_type(curFormat) != EMBFORMAT_OBJECTONLY: + if reader_state.strip() and embFormat_type(curFormat) != EMBFORMAT_OBJECTONLY: # extension includes the dot, so we'll remove it yield extension[1:], description |
