1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-26 01:46:13 +01:00

- make travis-ci happy again...

It got broken in commit 6a332bc1c6
This commit is contained in:
Marcus Huewe 2013-01-18 18:12:41 +01:00
parent 6a332bc1c6
commit 178120c99e

View File

@ -319,8 +319,8 @@ Binary file 'binary' has changed.
# TODO: Package.get_diff should return a consistent format
# (regardless of the used python version)
def __canonise_diff(diff):
diff = re.sub('^@@ -(\d+) ', '@@ -\\1,\\1 ', diff, re.MULTILINE)
diff = re.sub('^(@@ -\d+,\d+) \+(\d+) ', '\\1 +\\2,\\2 ', diff, re.MULTILINE)
diff = re.sub('^@@ -(\d+) ', '@@ -\\1,\\1 ', diff, flags=re.MULTILINE)
diff = re.sub('^(@@ -\d+,\d+) \+(\d+) ', '\\1 +\\2,\\2 ', diff, flags=re.MULTILINE)
return diff
got = __canonise_diff(got)