changeset 44924:6c8384afbf77 stable

resourceutil: fix location of line comments These comments slipped out of position when the sources where formatted with black in 2372284d9457.
author Manuel Jacob <me@manueljacob.de>
date Tue, 09 Jun 2020 05:24:45 +0200
parents 1f114c797961
children affe0fb42250
files mercurial/utils/resourceutil.py
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/utils/resourceutil.py	Thu Apr 30 00:33:00 2020 -0400
+++ b/mercurial/utils/resourceutil.py	Tue Jun 09 05:24:45 2020 +0200
@@ -23,10 +23,10 @@
     (portable, not much used).
     """
     return (
-        pycompat.safehasattr(sys, "frozen")
-        or pycompat.safehasattr(sys, "importers")  # new py2exe
-        or imp.is_frozen("__main__")  # old py2exe
-    )  # tools/freeze
+        pycompat.safehasattr(sys, "frozen")  # new py2exe
+        or pycompat.safehasattr(sys, "importers")  # old py2exe
+        or imp.is_frozen("__main__")  # tools/freeze
+    )
 
 
 # the location of data files matching the source code