There was an error while loading. Please reload this page.
1 parent 196f6a1 commit fae136cCopy full SHA for fae136c
1 file changed
ietf/doc/migrations/0013_auto_20151027_1127.py
@@ -1,4 +1,4 @@
1
-# -*- coding: utf-8 -*-
+# -*- coding: utf-8 -*-
2
from __future__ import unicode_literals
3
4
import sys
@@ -32,7 +32,11 @@ def canonical_name(self):
32
if a:
33
name = a[0].name
34
elif self.type_id == "charter":
35
- return charter_name_for_group(self.chartered_group)
+ try:
36
+ return charter_name_for_group(self.chartered_group)
37
+ except Exception as e:
38
+ print("Exception: %s" % e)
39
+ print("Document: %s" % name)
40
return name
41
42
def charter_name_for_group(group):
0 commit comments