(flag, orig_flag, new_flag)
| 239 | |
| 240 | # Check unparsed flags for common mistakes based on previous TOCO. |
| 241 | def _get_message_unparsed(flag, orig_flag, new_flag): |
| 242 | if flag.startswith(orig_flag): |
| 243 | return "\n Use {0} instead of {1}".format(new_flag, orig_flag) |
| 244 | return "" |
| 245 | |
| 246 | if unparsed: |
| 247 | output = "" |
no test coverage detected