Commit 61134250 authored by Yuta Okamoto's avatar Yuta Okamoto Committed by oroulet

Fix typo

parent a2f26361
...@@ -54,7 +54,7 @@ if __name__ == "__main__": ...@@ -54,7 +54,7 @@ if __name__ == "__main__":
if val & 1 << 31: if val & 1 << 31:
return 'Bad', 'Unknown StatusCode value: {}'.format(val) return 'Bad', 'Unknown StatusCode value: {}'.format(val)
elif val & 1 << 30: elif val & 1 << 30:
return 'UncertainIn', 'Unknown StatusCode value: {}'.format(val) return 'Uncertain', 'Unknown StatusCode value: {}'.format(val)
else: else:
return 'Good', 'Unknown StatusCode value: {}'.format(val) return 'Good', 'Unknown StatusCode value: {}'.format(val)
""") """)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment