Skip to content

Commit 508bf15

Browse files
committed
Work around an issue in xml2rfc
- Legacy-Id: 13682
1 parent afc37cc commit 508bf15

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/submit/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def clean(self):
147147
tf.write(chunk)
148148
os.environ["XML_LIBRARY"] = settings.XML_LIBRARY
149149
try:
150-
parser = xml2rfc.XmlRfcParser(tfn, quiet=True)
150+
parser = xml2rfc.XmlRfcParser(str(tfn), quiet=True)
151151
self.xmltree = parser.parse()
152152
ok, errors = self.xmltree.validate()
153153
except Exception as exc:

0 commit comments

Comments
 (0)