(self)
| 696 | self.run_command(status_command(), self.status_done, working_dir=self.vcs['root']) |
| 697 | |
| 698 | def git_status_command(self): |
| 699 | return [get_user_command('git') or 'git', 'status', '--porcelain'] |
| 700 | |
| 701 | def svn_status_command(self): |
| 702 | return [get_user_command('svn') or 'svn', 'status', '--quiet'] |
nothing calls this directly
no test coverage detected