[PATCH] patchbomb: consistently use opts.get

Christian Ebert blacktrash at gmx.net
Tue Oct 7 06:58:22 CDT 2008


# HG changeset patch
# User Christian Ebert <blacktrash at gmx.net>
# Date 1223380620 -7200
# Node ID 665986c76d8de59f8a265830455c047cbd54af66
# Parent  582dac23ebacc3ed48a1e5018af5f6476ac433f7
patchbomb: consistently use opts.get

diff --git a/hgext/patchbomb.py b/hgext/patchbomb.py
--- a/hgext/patchbomb.py
+++ b/hgext/patchbomb.py
@@ -159,7 +159,7 @@
         if not node:
             raise ValueError
 
-        if opts['attach']:
+        if opts.get('attach'):
              body = ('\n'.join(desc[1:]).strip() or
                    'Patch subject is complete summary.')
              body += '\n\n\n'
@@ -190,7 +190,7 @@
             else:
                 patchname = cmdutil.make_filename(repo, '%b.patch', binnode)
             disposition = 'inline'
-            if opts['attach']:
+            if opts.get('attach'):
                 disposition = 'attachment'
             p['Content-Disposition'] = disposition + '; filename=' + patchname
             msg.attach(p)


More information about the Mercurial-devel mailing list