diff mercurial/pathutil.py @ 50928:d718eddf01d9

safehasattr: drop usage in favor of hasattr The two functions should now be equivalent at least in their usage in core.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 31 Aug 2023 23:56:15 +0200
parents bc83ebe07bf0
children 9d3721552b6c
line wrap: on
line diff
--- a/mercurial/pathutil.py	Thu Dec 08 15:33:19 2022 +0100
+++ b/mercurial/pathutil.py	Thu Aug 31 23:56:15 2023 +0200
@@ -377,7 +377,7 @@
         return d in self._dirs
 
 
-if util.safehasattr(parsers, 'dirs'):
+if hasattr(parsers, 'dirs'):
     dirs = parsers.dirs
 
 if rustdirs is not None: