(entry)
| 32 | |
| 33 | |
| 34 | def log_entry(entry): |
| 35 | log = entry.split(' ') |
| 36 | hash = log[0] |
| 37 | log = ' '.join(log[1:]) |
| 38 | |
| 39 | return "- [%s](../../commit/%s) %s" % (hash, hash, log) |
| 40 | |
| 41 | |
| 42 | def get_tags_date(tag): |
no outgoing calls
no test coverage detected
searching dependent graphs…