We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96fb33f commit 98b9efdCopy full SHA for 98b9efd
1 file changed
ietf/bin/report_progress_report
@@ -19,4 +19,8 @@ django.setup()
19
20
from ietf.secr.drafts.reports import report_progress_report
21
22
-print report_progress_report(sys.argv[1], sys.argv[2]),
+# handle unicode characters before attempting to print
23
+output = report_progress_report(sys.argv[1], sys.argv[2])
24
+output = output.replace(unichr(160),' ') # replace NO-BREAK SPACE with space
25
+output = output.encode('ascii','replace')
26
+print output,
0 commit comments