diff hgext/inhibit.py @ 1247: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 3625d006e81b
children 62229e7451f7
line wrap: on
line diff
--- a/hgext/inhibit.py	Mon Apr 06 11:21:20 2015 -0700
+++ b/hgext/inhibit.py	Fri Apr 10 23:16:10 2015 -0400
@@ -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