Mercurial > p > roundup > code
diff roundup/hyperdb.py @ 5260:29949f41cefb
I botched something in the history filter code for links. Commenting
out the section of code and returning the history entry so I don't
delay other people's development before I can spend some time working
on it again.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 27 Aug 2017 22:44:30 -0400 |
| parents | 928512faf565 |
| children | 53a853c06e9a |
line wrap: on
line diff
--- a/roundup/hyperdb.py Sun Aug 27 00:57:42 2017 -0400 +++ b/roundup/hyperdb.py Sun Aug 27 22:44:30 2017 -0400 @@ -1067,6 +1067,7 @@ # id/object (linkcl, linkid) that is linked/unlinked is not # (viewable or editable) if len(args) == 3: + ''' # e.g. for issue3 blockedby adds link to issue5 with: # j = id, evt_date, user, action, args # 3|20170528045201.484|5|link|('issue', '5', 'blockedby') @@ -1100,6 +1101,7 @@ logger.debug("skipping unaccessible target %s%s for user%s in %s", cls.classname, linkid, uid, j_repr) continue + ''' journal.append(j) else: logger.error("Invalid %s journal entry for %s%s: %s",
