Update consoleUI.py - Use groupname in tryadvcmds

This commit is contained in:
Etoh 2012-12-27 14:20:15 +00:00
parent dfe23966f2
commit bb6b058562

View File

@ -62,8 +62,8 @@ class ConsoleUI(threading.Thread):
o = re.match(r"^(?:o|offset)\ ?(?P<sign>[+-])?(?P<time>\d+(?:[^\d\.](?:\d+)){0,2}(?:\.(?:\d+))?)$", data)
s = re.match(r"^(?:s|seek)?\ ?(?P<sign>[+-])?(?P<time>\d+(?:[^\d\.](?:\d+)){0,2}(?:\.(?:\d+))?)$", data)
if(o):
sign = self._extractRegexSign(o)
t = utils.parseTime(o.group(2))
sign = self._extractRegexSign(o.group('sign'))
t = utils.parseTime(o.group('time'))
if(t is None):
return
if(sign):
@ -72,7 +72,7 @@ class ConsoleUI(threading.Thread):
return True
elif s:
sign = self._extractRegexSign(s)
t = utils.parseTime(s.group(2))
t = utils.parseTime(s.group('time'))
if(t is None):
return
if(sign):