def get_commit_message(self, revisionid):
        """Return the string commit message appropriate for supplied revision.

        :revisionid: the id of the revision to create a message for
        :returns: the string of the commit message

        """
        msg = phlcon_differential.get_commit_message(self._conduit, revisionid)
        return phlsys_textconvert.lossy_unicode_to_ascii(msg)
    def get_commit_message(self, revisionid):
        """Return the string commit message appropriate for supplied revision.

        :revisionid: the id of the revision to create a message for
        :returns: the string of the commit message

        """
        return phlcon_differential.get_commit_message(
            self._conduit, revisionid)
    def get_commit_message(self, revisionid):
        """Return the string commit message appropriate for supplied revision.

        :revisionid: the id of the revision to create a message for
        :returns: the string of the commit message

        """
        msg = phlcon_differential.get_commit_message(self._multi_conduit,
                                                     revisionid)
        return phlsys_textconvert.lossy_unicode_to_ascii(msg)
 def testCanGetCommitMessage(self):
     revisionid = self._createRevision("testUpdateStrangeFields")
     phlcon_differential.get_commit_message(self.conduit, revisionid)
示例#5
0
 def testCanGetCommitMessage(self):
     revisionid = self._createRevision("testUpdateStrangeFields")
     phlcon_differential.get_commit_message(self.conduit, revisionid)