(action)
| 135 | |
| 136 | |
| 137 | def welcome_format(action): |
| 138 | return WELCOME_MSG_TPL.format( |
| 139 | version=version.version_string(), |
| 140 | uptime=util.uptime(), |
| 141 | timestamp=util.time_rfc2822(), |
| 142 | action=action, |
| 143 | ) |
| 144 | |
| 145 | |
| 146 | @performance.timed("Closing stdin") |
no test coverage detected