(self)
| 372 | |
| 373 | # set command prompt |
| 374 | def set_prompt(self): |
| 375 | target = self.target + ":" if self.conn else "" |
| 376 | cwd = self.cwd if self.conn else "" |
| 377 | self.prompt = target + c.SEP + cwd + "> " |
| 378 | |
| 379 | # get separator |
| 380 | def get_sep(self, path): |
no outgoing calls
no test coverage detected