X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/1f3bb0172efa4e5edf43f5407306f0cf3e1b717e..860d288db5f555a00a27a05bffd9b19fda154ccb:/stgit/commands/common.py diff --git a/stgit/commands/common.py b/stgit/commands/common.py index 836884c..6843dcf 100644 --- a/stgit/commands/common.py +++ b/stgit/commands/common.py @@ -241,5 +241,5 @@ def make_patch_name(msg): if not msg: return None - subject_line = msg.lstrip().split('\n', 1)[0] + subject_line = msg.lstrip().split('\n', 1)[0].lower() return re.sub('[\W]+', '-', subject_line).strip('-')