Projet

Général

Profil

0001-workflows-fix-embedding-of-timeout-options-2596.patch

Frédéric Péters, 15 mars 2013 10:39

Télécharger (1,06 ko)

Voir les différences:

Subject: [PATCH] workflows: fix embedding of timeout options (#2596)

 wcs/wf/timeout_jump.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
wcs/wf/timeout_jump.py
46 46
                  '<br/><span class="warning">Minimal duration is %(granularity)s</span>')) % {
47 47
                        'variables': ','.join(timewords()),
48 48
                        'granularity': seconds2humanduration(self._granularity)}
49
            form.add(StringWidget, 'timeout', title=_('Timeout'),
49
            form.add(StringWidget, '%stimeout' % prefix, title=_('Timeout'),
50 50
                        value=seconds2humanduration(self.timeout), hint=_hint)
51 51

  
52 52
    def timeout_parse(self, value):
53
-