/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/plugins/propose/github.py

Don't mark all GitHub pull requests as draft.

Merged from https://code.launchpad.net/~jelmer/brz/github-draft/+merge/380384

Show diffs side-by-side

added added

removed removed

Lines of Context:
587
587
                head="%s:%s" % (self.source_owner, self.source_branch_name),
588
588
                base=self.target_branch_name,
589
589
                labels=labels, assignee=assignees,
590
 
                draft=(not work_in_progress))
 
590
                draft=work_in_progress)
591
591
        except ValidationFailed:
592
592
            raise MergeProposalExists(self.source_branch.user_url)
593
593
        return GitHubMergeProposal(self.gh, pull_request)