This commit is contained in:
parent
124dd1dcba
commit
d784694262
1 changed files with 3 additions and 1 deletions
|
@ -357,7 +357,9 @@ while True:
|
||||||
try:
|
try:
|
||||||
extraflags = expression.split("/")[3:]
|
extraflags = expression.split("/")[3:]
|
||||||
for i in extraflags:
|
for i in extraflags:
|
||||||
if i.lower() == "g":
|
if i.strip() == "":
|
||||||
|
pass
|
||||||
|
elif i.lower() == "g":
|
||||||
repeat = True
|
repeat = True
|
||||||
elif i.strip().isdigit():
|
elif i.strip().isdigit():
|
||||||
print(f"index = {int(i)}")
|
print(f"index = {int(i)}")
|
||||||
|
|
Loading…
Reference in a new issue