Alex Fernandez wrote: > Index: lib/configure.py > =================================================================== > --- lib/configure.py (revisión: 37304) > +++ lib/configure.py (copia de trabajo) > @@ -639,22 +639,19 @@ > rc_entry = [ r'\converter word latex "%%" ""' ]) > > # eLyXer: search as an executable (elyxer.py, elyxer) > + elyxerfound = False > path, elyxer = checkProg('a LyX -> HTML converter', > ['elyxer.py --directory $$r $$i $$o', 'elyxer --directory $$r $$i > $$o'], > rc_entry = [ r'\converter lyx html "%%" ""' ]) > - path, elyxer = checkProg('a LyX -> MS Word converter', > - ['elyxer.py --directory $$r $$i $$o', 'elyxer --html --directory $$r > $$i $$o'], > + path, elyxer = checkProg('a LyX -> HTML (MS Word) converter', > + ['elyxer.py --html --directory $$r $$i $$o', 'elyxer --html > --directory $$r $$i $$o'], > rc_entry = [ r'\converter lyx wordhtml "%%" ""' ]) > if elyxer.find('elyxer') >= 0: > elyxerfound = True > - else: > - elyxerfound = False > - > - if elyxerfound: > addToRC(r'''\copier html "python -tt $$s/scripts/ext_copy.py > -e html,png,jpg,jpeg,css $$i $$o"''') > addToRC(r'''\copier wordhtml "python -tt > $$s/scripts/ext_copy.py -e html,png,jpg,jpeg,css $$i $$o"''') > else:
maybe i overlooked something but it looks elyxerfound is used only for assignments now? pavel