Skip to content
This repository was archived by the owner on Aug 10, 2025. It is now read-only.

Commit b56617b

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents f4909ad + 977dbe1 commit b56617b

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

tools/releasenotes-links.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env python
2+
3+
import sys
4+
import re
5+
6+
link = '<a href="https://github.com/apavlo/h-store/commit/%s" class="websvn" title="View Commit Information">[%s]</a>'
7+
for key in sys.argv[1:]:
8+
print link % (key, key[:7])
9+
10+

0 commit comments

Comments
 (0)