Skip to content

Commit b21a226

Browse files
committed
Merge branch 'pw/maint-p4' into maint
* pw/maint-p4: git-p4: fix keyword-expansion regex
2 parents a0178ae + 3d51c85 commit b21a226

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/fast-import/git-p4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -963,7 +963,7 @@ class P4Sync(Command):
963963
if stat['type'] in ('text+ko', 'unicode+ko', 'binary+ko'):
964964
text = re.sub(r'(?i)\$(Id|Header):[^$]*\$',r'$\1$', text)
965965
elif stat['type'] in ('text+k', 'ktext', 'kxtext', 'unicode+k', 'binary+k'):
966-
text = re.sub(r'\$(Id|Header|Author|Date|DateTime|Change|File|Revision):[^$]*\$',r'$\1$', text)
966+
text = re.sub(r'\$(Id|Header|Author|Date|DateTime|Change|File|Revision):[^$\n]*\$',r'$\1$', text)
967967

968968
contents[stat['depotFile']] = text
969969

0 commit comments

Comments
 (0)