##// END OF EJS Templates
cleanup: fix a few recent black formatting violations...
Matt Harbison -
r46551:66f6ca2b default
parent child Browse files
Show More
@@ -150,9 +150,7 b' class changelog(baselog):'
150 150
151 151 def tiprev(self):
152 152 t = self._db.execute(
153 'SELECT rev FROM changelog '
154 'ORDER BY REV DESC '
155 'LIMIT 1'
153 'SELECT rev FROM changelog ' 'ORDER BY REV DESC ' 'LIMIT 1'
156 154 )
157 155 return next(t)
158 156
@@ -816,8 +816,7 b' class buildhgexe(build_ext):'
816 816 if sys.version_info[0] >= 3:
817 817 fsdecode = os.fsdecode
818 818 dest = os.path.join(
819 os.path.dirname(self.hgtarget),
820 fsdecode(dllbasename),
819 os.path.dirname(self.hgtarget), fsdecode(dllbasename),
821 820 )
822 821
823 822 if not os.path.exists(dest):
General Comments 0
You need to be logged in to leave comments. Login now