Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • mergebot/trunk/mergebot/BranchActor.py

    r17 r29  
    22"""Module for creating new branches for tickets"""
    33
    4 import os
    54import time
    65
     
    2019
    2120        # Make sure the various urls we require do exist
    22         if not SvnOps.get_branch_info(self.local_url(), logfile):
    23             comment = 'Component %s does not exist in the repository.' \
    24                 % self.component
    25             return results, comment, False
    26         if not SvnOps.get_branch_info(self.local_url() + '/branches', logfile):
    27             comment = 'No directory in which to create branches for component %s in the repository.' % self.component
    28             return results, comment, False
    29         if not SvnOps.get_branch_info(self.baseline_local_url(), logfile):
    30             comment = 'Version %s for component %s does not exist in the repository.' % (self.version, self.component)
    31             return results, comment, False
     21        problems = self.check_required_directories()
     22        if problems:
     23            return results, problems, False
    3224
    3325        commit_header = 'Ticket #%s: %s' % (self.ticket, self.summary)
     
    3527        # Delete the branch if it already exists.  This can happen if the branch
    3628        # was merged, but we're still working on it.
    37         if SvnOps.get_branch_info(self.branch_local_url(), logfile):
     29        if SvnOps.does_url_exist(self.branch_local_url()):
    3830            # This branch already exists.
    3931            commit_message = "\n".join([commit_header,
     
    5951            comment = 'Failed to create branch.'
    6052            return results, comment, False
     53
    6154        results['mergebotstate'] = 'branched'
    6255        comment = '\n'.join([
    6356            'Created branch from %s for %s.' % (self.version, self.requestor),
    6457            '',
    65             'Browse branch [source:%s/branches/ticket-%s source code] and [log:%s/branches/ticket-%s commit log].' %
     58            'Browse branch [source:%s/branches/ticket-%s source code] and ' \
     59                '[log:%s/branches/ticket-%s commit log].' %
    6660                (self.component, self.ticket, self.component, self.ticket),
    6761            '',
Note: See TracChangeset for help on using the changeset viewer.