aboutsummaryrefslogtreecommitdiff
path: root/b4/diff.py
diff options
context:
space:
mode:
authorKonstantin Ryabitsev <konstantin@linuxfoundation.org>2021-05-25 13:51:51 -0400
committerKonstantin Ryabitsev <konstantin@linuxfoundation.org>2021-05-25 13:51:51 -0400
commit036c0f3f4f17d091556dfc26bee5aa3a29f7912a (patch)
tree96bdeedd00cfb8572f86f8290329b661caf168bc /b4/diff.py
parentf2eacc4dbcb8f976ab12570c0a3c6d53bc3c1c23 (diff)
downloadb4-036c0f3f4f17d091556dfc26bee5aa3a29f7912a.tar.gz
Don't depend on List-Archive lore header
The newer version of public-inbox is not injecting its own List-Archive headers, so stop relying on it for any purpose. Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
Diffstat (limited to 'b4/diff.py')
-rw-r--r--b4/diff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/b4/diff.py b/b4/diff.py
index abd5fec..299ebf2 100644
--- a/b4/diff.py
+++ b/b4/diff.py
@@ -44,7 +44,7 @@ def diff_same_thread_series(cmdargs):
if not msgs:
logger.critical('Unable to retrieve thread: %s', msgid)
return
- msgs = b4.mbox.get_extra_series(msgs, direction=-1, wantvers=wantvers)
+ msgs = b4.mbox.get_extra_series(msgs, direction=-1, wantvers=wantvers, useproject=cmdargs.useproject)
if os.path.exists(cachedir):
shutil.rmtree(cachedir)
pathlib.Path(cachedir).mkdir(parents=True)