(command)
| 240 | |
| 241 | |
| 242 | def EscapeCommand(command): |
| 243 | parts = [] |
| 244 | for part in command: |
| 245 | if ' ' in part: |
| 246 | # Escape spaces. We may need to escape more characters for this |
| 247 | # to work properly. |
| 248 | parts.append('"%s"' % part) |
| 249 | else: |
| 250 | parts.append(part) |
| 251 | return " ".join(parts) |
| 252 | |
| 253 | |
| 254 | class SimpleProgressIndicator(ProgressIndicator): |
no test coverage detected
searching dependent graphs…