Snap for 10238683 from f37726d2268fe61ef1697ecb32963657a45b3964 to studio-hedgehog-release

Change-Id: I44b6326a325e60b6068d4f7ceb621b445950afd0
diff --git a/rh/hooks.py b/rh/hooks.py
index 4932c2f..23cd641 100644
--- a/rh/hooks.py
+++ b/rh/hooks.py
@@ -457,7 +457,7 @@
 
 def check_commit_msg_buganizer_field(project, commit, desc, _diff, options=None):
    """Check the commit message for a 'Bug:' or 'Fixes:' line."""
-   regex = r'^(?i)(bug|fixes):'
+   regex = r'(?i)^(bug|fixes):'
    check_re = re.compile(regex)
 
    if options.args():