Tracks those untracked files in the list.
(files, curr_b)
| 115 | |
| 116 | |
| 117 | def _auto_track(files, curr_b): |
| 118 | """Tracks those untracked files in the list.""" |
| 119 | for fp in files: |
| 120 | f = curr_b.status_file(fp) |
| 121 | if f.type == core.GL_STATUS_UNTRACKED: |
| 122 | curr_b.track_file(f.fp) |
| 123 | |
| 124 | |
| 125 | def _op_continue(op, fn): |
no test coverage detected