(self)
| 1286 | raise GlError('Fuse in progress') |
| 1287 | |
| 1288 | def _check_is_current(self): |
| 1289 | if not self.is_current: |
| 1290 | raise BranchIsCurrentError( |
| 1291 | 'Branch {0} is the current branch'.format(self.branch_name)) |
| 1292 | |
| 1293 | |
| 1294 | class Tag(object): |
no test coverage detected