Skip to content

Commit

Permalink
EFM.5.02.* checks: block for standard taxonomy files (edgartaxonomies…
Browse files Browse the repository at this point in the history
….xml)

Prevent error in ifrs 2017 comment with non-ascii quote characters
  • Loading branch information
hefischer committed Sep 3, 2017
1 parent 7400245 commit 57d75db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arelle/ModelDocument.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ def load(modelXbrl, uri, base=None, referringElement=None, isEntry=False, isDisc
if modelDocument is not None:
return modelDocument
if (modelXbrl.modelManager.validateDisclosureSystem and
modelXbrl.modelManager.disclosureSystem.validateFileText):
modelXbrl.modelManager.disclosureSystem.validateFileText and
not normalizedUri in modelXbrl.modelManager.disclosureSystem.standardTaxonomiesDict):
file, _encoding = ValidateFilingText.checkfile(modelXbrl,filepath)
else:
file, _encoding = modelXbrl.fileSource.file(filepath, stripDeclaration=True)
Expand Down

0 comments on commit 57d75db

Please sign in to comment.