Show More
@@ -114,9 +114,11 b' def patchbomb(ui, repo, *revs, **opts):' | |||||
114 | if line.startswith('diff -r'): break |
|
114 | if line.startswith('diff -r'): break | |
115 | desc.append(line) |
|
115 | desc.append(line) | |
116 | if not node: raise ValueError |
|
116 | if not node: raise ValueError | |
117 | body = ('\n'.join(desc[1:]).strip() or |
|
117 | ||
118 | 'Patch subject is complete summary.') |
|
118 | #body = ('\n'.join(desc[1:]).strip() or | |
119 | body += '\n\n\n' |
|
119 | # 'Patch subject is complete summary.') | |
|
120 | #body += '\n\n\n' | |||
|
121 | ||||
120 | if opts['diffstat']: |
|
122 | if opts['diffstat']: | |
121 | body += cdiffstat('\n'.join(desc), patch) + '\n\n' |
|
123 | body += cdiffstat('\n'.join(desc), patch) + '\n\n' | |
122 | body += '\n'.join(patch) |
|
124 | body += '\n'.join(patch) |
General Comments 0
You need to be logged in to leave comments.
Login now