[PATCH 3 of 8 V2] patch.diffopts: break get function into if statements

Siddharth Agarwal sid0 at fb.com
Thu Nov 13 17:08:48 CST 2014


# HG changeset patch
# User Siddharth Agarwal <sid0 at fb.com>
# Date 1415864657 28800
#      Wed Nov 12 23:44:17 2014 -0800
# Node ID 1b945e3178b5781a10121adc9d2687be4b0e86cd
# Parent  83670f68811bd631d830067fc22e8452100c78b5
patch.diffopts: break get function into if statements

We're going to add another condition here, and with the current structure that
becomes just too confusing.

diff --git a/mercurial/patch.py b/mercurial/patch.py
--- a/mercurial/patch.py
+++ b/mercurial/patch.py
@@ -1559,9 +1559,13 @@
     pass
 
 def diffopts(ui, opts=None, untrusted=False, section='diff'):
-    def get(key, name=None, getter=ui.configbool):
-        return ((opts and opts.get(key)) or
-                getter(section, name or key, None, untrusted=untrusted))
+    def get(key, name=None, getter=ui.configbool, forceplain=None):
+        if opts:
+            v = opts.get(key)
+            if v:
+                return v
+        return getter(section, name or key, None, untrusted=untrusted)
+
     return mdiff.diffopts(
         text=opts and opts.get('text'),
         git=get('git'),


More information about the Mercurial-devel mailing list