~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

(mbp, for gz) mask out sigquit in ssh child process so that breakin doesn't kill it

Show diffs side-by-side

added added

removed removed

Lines of Context:
699
699
 
700
700
    def run(self, dir_list):
701
701
        for d in dir_list:
 
702
            os.mkdir(d)
702
703
            wt, dd = WorkingTree.open_containing(d)
703
 
            base = os.path.dirname(dd)
704
 
            id = wt.path2id(base)
705
 
            if id != None:
706
 
                os.mkdir(d)
707
 
                wt.add([dd])
708
 
                self.outf.write('added %s\n' % d)
709
 
            else:
710
 
                raise errors.NotVersionedError(path=base)
 
704
            wt.add([dd])
 
705
            self.outf.write('added %s\n' % d)
711
706
 
712
707
 
713
708
class cmd_relpath(Command):
3174
3169
            raise errors.BzrCommandError("Commit refused because there are"
3175
3170
                              " unknown files in the working tree.")
3176
3171
        except errors.BoundBranchOutOfDate, e:
3177
 
            e.extra_help = ("\n"
3178
 
                'To commit to master branch, run update and then commit.\n'
3179
 
                'You can also pass --local to commit to continue working '
3180
 
                'disconnected.')
3181
 
            raise
 
3172
            raise errors.BzrCommandError(str(e) + "\n"
 
3173
            'To commit to master branch, run update and then commit.\n'
 
3174
            'You can also pass --local to commit to continue working '
 
3175
            'disconnected.')
3182
3176
 
3183
3177
 
3184
3178
class cmd_check(Command):