We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7423db2 commit 89f0fc9Copy full SHA for 89f0fc9
client.py
@@ -42,10 +42,9 @@ def get_keys(filename, import_base=None):
42
43
# extract cites
44
keys = set()
45
- cites = re.findall("\\\\\(no\)?citeA?\\{([^\\}]+)\\}", content)
+ cites = re.findall("\\\\(no)?citeA?\\{([^\\}]+)\\}", content)
46
for key in cites:
47
- keys |= set(key.split(","))
48
-
+ keys |= set(key[1].split(","))
49
# find inputs/include and recursively parse them
50
inputs = re.findall("\\\\(?:input|include)\\{([^\\}]+)\\}", content)
51
for f in inputs:
0 commit comments