summaryrefslogtreecommitdiff
path: root/b4/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'b4/__init__.py')
-rw-r--r--b4/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/b4/__init__.py b/b4/__init__.py
index 3cdad1c..ab8f034 100644
--- a/b4/__init__.py
+++ b/b4/__init__.py
@@ -680,6 +680,9 @@ class LoreSeries:
# Logic largely borrowed from gj_tools
seenfiles = set()
for lmsg in self.patches[1:]:
+ if lmsg is None:
+ logger.critical('ERROR: v%s series incomplete; unable to create a fake-am range', self.revision)
+ return None, None
logger.debug('Looking at %s', lmsg.full_subject)
lmsg.load_hashes()
if not len(lmsg.blob_indexes):