Skip to content
Snippets Groups Projects
Verified Commit d190e2b4 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

Additional None-ness check.

parent c8070906
No related branches found
No related tags found
1 merge request!39Release 0.4.0
Pipeline #21339 passed
......@@ -855,6 +855,9 @@ class CMeal():
def all_groups_equal(cls, m1, m2):
equal = True
if m2 is None:
return False
for group in cls.matching_groups:
if (group not in m1.groupdict() or
group not in m2.groupdict() or
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment