Update /ui/consoleUI.py - Fix seek pattern

This commit is contained in:
Etoh 2012-12-27 14:15:55 +00:00
parent 0757f4f8cd
commit 95c9a94112

View File

@ -60,7 +60,7 @@ class ConsoleUI(threading.Thread):
def _tryAdvancedCommands(self, data):
o = re.match(r"^(?:o|offset)\ ?(?P<sign>[+-])?(?P<time>\d+(?:[^\d\.](?:\d+)){0,2}(?:\.(?:\d+))?)$", data)
s = re.match(r"^(?:s|seek)?\ ?([+-])?\ ?(\d+[:\.]?)+$", data) #careful! s will match o as well
s = re.match(r"^(?:s|seek)?\ ?(?P<sign>[+-])?(?P<time>\d+(?:[^\d\.](?:\d+)){0,2}(?:\.(?:\d+))?)$", data) #careful! s will match o as well
if(o):
sign = self._extractRegexSign(o)
t = utils.parseTime(o.group(2))