##// END OF EJS Templates
Make diffstat optional for patchbomb script.
Thomas Arendsen Hein -
r1136:d4518885 default
parent child Browse files
Show More
@@ -192,8 +192,9 b' def patchbomb(ui, repo, *revs, **opts):'
192 192
193 193 ui.write('\n')
194 194
195 d = cdiffstat('Final summary:\n', jumbo)
196 if d: msg.attach(MIMEText(d))
195 if opts['diffstat']:
196 d = cdiffstat('Final summary:\n', jumbo)
197 if d: msg.attach(MIMEText(d))
197 198
198 199 msgs.insert(0, msg)
199 200
General Comments 0
You need to be logged in to leave comments. Login now