Mercurial > hg > anonet-resdb
changeset 954:f95b4af563e6 draft
Merge commit 'bf897c8381adc10fc59542f7dff58ce0dc1ab2dd'
author | Nick <nick@somerandomnick.ano> |
---|---|
date | Thu, 14 Jun 2012 17:33:14 +0000 |
parents | b8ad676b3c0c (current diff) 69a104eb11d6 (diff) |
children | 3a4ae8f963d6 |
files | |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/splicex/src/splicex.pyx Thu Jun 14 17:32:50 2012 +0000 +++ b/contrib/splicex/src/splicex.pyx Thu Jun 14 17:33:14 2012 +0000 @@ -1752,7 +1752,8 @@ StartTime = time.time() - 1 if TIME != None: try: - TIME = TIME.split(", ") + TIME = TIME.replace(' ','') + TIME = TIME.split(",") sleep_now = int(TIME[0]) sleep_for = int(TIME[1]) @@ -1765,6 +1766,7 @@ if LENGTH != None: try: + LENGTH = LENGTH.replace(' ','') LENGTH = LENGTH.split(", ") length_start = int(LENGTH[0]) length_end = int(LENGTH[1])