Skip to content
Snippets Groups Projects
Commit d9ffba47 authored by Mathieu Loiseau's avatar Mathieu Loiseau
Browse files

process exceptions in load dumps

parent 0d3814c5
No related branches found
No related tags found
No related merge requests found
...@@ -103,4 +103,7 @@ if __name__ == "__main__": ...@@ -103,4 +103,7 @@ if __name__ == "__main__":
import config import config
for wiktlang in config.supported_wiktlangs: for wiktlang in config.supported_wiktlangs:
load_templates(wiktlang) try:
load_templates(wiktlang)
except ValueError as e:
print(e)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment