[PATCH 1 of 3] patchbomb: remove unneeded line continuation

Christian Ebert blacktrash at gmx.net
Thu Aug 26 10:24:40 CDT 2010


# HG changeset patch
# User Christian Ebert <blacktrash at gmx.net>
# Date 1282775178 -3600
# Node ID 5ef5d9a1d056449555c93dddb0e7887f21edf4b1
# Parent  41def6704d010d784d772b96640b63ac5b157bc5
patchbomb: remove unneeded line continuation

diff --git a/hgext/patchbomb.py b/hgext/patchbomb.py
--- a/hgext/patchbomb.py
+++ b/hgext/patchbomb.py
@@ -400,8 +400,7 @@
             return mail.addrlistencode(ui, addrs, _charsets,
                                        opts.get('test'))
 
-        addrs = (ui.config('email', opt) or
-                 ui.config('patchbomb', opt) or '')
+        addrs = ui.config('email', opt) or ui.config('patchbomb', opt) or ''
         if not addrs and prpt:
             addrs = prompt(ui, prpt, default)
 


More information about the Mercurial-devel mailing list