This commit is contained in:
Jing Ling
2020-08-20 14:07:31 +08:00
parent e056834f1d
commit 0a770916cf
8 changed files with 18 additions and 15 deletions
+2 -2
View File
@@ -388,8 +388,8 @@ class Condition(object):
else:
name = []
while self.index < len(
self.condstr) and self.condstr[self.index] in self.allow_character:
while self.index < len(self.condstr) and self.condstr[self.index] \
in self.allow_character:
name.append(self.condstr[self.index])
self.index += 1