We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa74b3b commit 57af386Copy full SHA for 57af386
axcell/helpers/paper_extractor.py
@@ -33,7 +33,7 @@ def __call__(self, source):
33
try:
34
self.unpack(source, unpack_path)
35
except UnpackError as e:
36
- if e.message.startswith('The paper has been withdrawn'):
+ if e.args[0].startswith('The paper has been withdrawn'):
37
return 'withdrawn'
38
return 'no-tex'
39
html_path = self.root / 'htmls' / subpath / 'index.html'
0 commit comments