Remove spaces from patch filename

main
Bob Mottram 2020-05-02 16:44:46 +00:00
parent 9c3ce88e8d
commit b458e06feb
1 changed files with 7 additions and 7 deletions

14
git.py
View File

@ -88,7 +88,9 @@ def receiveGitPatch(baseDir: str, nickname: str, domain: str,
for line in patchLines:
if line.startswith('Subject:'):
patchSubject = \
line.replace('Subject:', '').replace('/', '|').strip()
line.replace('Subject:', '').replace('/', '|')
patchSubject = patchSubject.replace('[PATCH]', '').strip()
patchSubject = patchSubject.replace(' ', '_')
projectName = \
getGitProjectName(baseDir, nickname, domain, subject)
patchDir = \
@ -99,9 +101,7 @@ def receiveGitPatch(baseDir: str, nickname: str, domain: str,
break
if not patchFilename:
return False
patchFile = open(patchFilename, "w")
if not patchFile:
return False
patchFile.write(contentStr)
patchFile.close()
return True
with open(patchFilename, "w") as patchFile:
patchFile.write(contentStr)
return True
return False