Show More
@@ -94,8 +94,9 b' class MergeFailureReason(object):' | |||
|
94 | 94 | # The target repository is locked |
|
95 | 95 | TARGET_IS_LOCKED = 7 |
|
96 | 96 | |
|
97 | # Deprecated, use MISSING_TARGET_REF or MISSING_SOURCE_REF instead. | |
|
97 | 98 | # A involved commit could not be found. |
|
98 | MISSING_COMMIT = 8 | |
|
99 | _DEPRECATED_MISSING_COMMIT = 8 | |
|
99 | 100 | |
|
100 | 101 | # The target repo reference is missing. |
|
101 | 102 | MISSING_TARGET_REF = 9 |
@@ -95,7 +95,7 b' class PullRequestModel(BaseModel):' | |||
|
95 | 95 | MergeFailureReason.TARGET_IS_LOCKED: lazy_ugettext( |
|
96 | 96 | 'This pull request cannot be merged because the target repository' |
|
97 | 97 | ' is locked.'), |
|
98 | MergeFailureReason.MISSING_COMMIT: lazy_ugettext( | |
|
98 | MergeFailureReason._DEPRECATED_MISSING_COMMIT: lazy_ugettext( | |
|
99 | 99 | 'This pull request cannot be merged because the target or the ' |
|
100 | 100 | 'source reference is missing.'), |
|
101 | 101 | MergeFailureReason.MISSING_TARGET_REF: lazy_ugettext( |
General Comments 0
You need to be logged in to leave comments.
Login now