From 50dec9eae9cd8b6acd0e239dddd64586aec30df0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karl=20Hasselstr=C3=B6m?= Date: Tue, 15 May 2007 18:10:00 +0100 Subject: [PATCH] Generate patch names of more uniform length MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Cut the generated patch name at 30 characters after getting rid of unwanted characters, not before. This gives patch names of more uniform length, since consecutive unwanted characters were replaced by a single dash. Signed-off-by: Karl Hasselström --- stgit/utils.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stgit/utils.py b/stgit/utils.py index 18198c0..3612a4b 100644 --- a/stgit/utils.py +++ b/stgit/utils.py @@ -175,13 +175,13 @@ def call_editor(filename): def patch_name_from_msg(msg): """Return a string to be used as a patch name. This is generated - from the first 30 characters of the top line of the string passed - as argument.""" + from the top line of the string passed as argument, and is at most + 30 characters long.""" if not msg: return None - subject_line = msg[:30].lstrip().split('\n', 1)[0].lower() - return re.sub('[\W]+', '-', subject_line).strip('-') + subject_line = msg.split('\n', 1)[0].lstrip().lower() + return re.sub('[\W]+', '-', subject_line).strip('-')[:30] def make_patch_name(msg, unacceptable, default_name = 'patch', alternative = True): -- 2.11.0