comparison mercurial/templater.py @ 27637:b502138f5faa

cleanup: remove superfluous space after space after equals (python)
author timeless <timeless@mozdev.org>
date Thu, 31 Dec 2015 08:16:59 +0000
parents 9e06e7fb037d
children ac8c0ee5c3b8
comparison
equal deleted inserted replaced
27636:21b363bd87dc 27637:b502138f5faa
830 830
831 def stylelist(): 831 def stylelist():
832 paths = templatepaths() 832 paths = templatepaths()
833 if not paths: 833 if not paths:
834 return _('no templates found, try `hg debuginstall` for more info') 834 return _('no templates found, try `hg debuginstall` for more info')
835 dirlist = os.listdir(paths[0]) 835 dirlist = os.listdir(paths[0])
836 stylelist = [] 836 stylelist = []
837 for file in dirlist: 837 for file in dirlist:
838 split = file.split(".") 838 split = file.split(".")
839 if split[0] == "map-cmdline": 839 if split[0] == "map-cmdline":
840 stylelist.append(split[1]) 840 stylelist.append(split[1])