changeset 1343:f96dad835054

inhibit: explicitly test for None It is always better to check for None explicitly.
author Pierre-Yves David <pierre-yves.david@fb.com>
date Fri, 10 Apr 2015 23:16:10 -0400
parents cf846d47bb7e
children 4279ec5ff3a7
files hgext/inhibit.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/inhibit.py
+++ b/hgext/inhibit.py
@@ -235,7 +235,7 @@
     # We extract the symbols that look like hashes and add them to the
     # explicitaccess set
     orig(tree, repo)
-    if repo and repo.filtername == 'visible':
+    if repo is not None and repo.filtername == 'visible':
         prelength = len(repo._explicitaccess)
         repo.symbols = gethashsymbols(tree)
         cl = repo.unfiltered().changelog