Kaydet (Commit) 4f759d85 authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Correct erroneous parenthesis placement in the delta from 1.63 to 1.64.

üst 9482d259
......@@ -823,8 +823,8 @@ TT { font-family: lucidatypewriter, lucida console, courier }
def found(name, ispackage,
modpkgs=modpkgs, shadowed=shadowed, seen=seen):
if not name in seen:
modpkgs.append((name, '', ispackage, name)) in shadowed
if name not in seen:
modpkgs.append((name, '', ispackage, name in shadowed))
seen[name] = 1
shadowed[name] = 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment