##// END OF EJS Templates
kill some trailing spaces
Dirkjan Ochtman -
r7434:cf7741aa default
parent child Browse files
Show More
@@ -53,7 +53,7 b' def reposetup(ui, repo):'
53 def status(self, match, ignored, clean, unknown=True):
53 def status(self, match, ignored, clean, unknown=True):
54 files = match.files()
54 files = match.files()
55 if '.' in files:
55 if '.' in files:
56 files = []
56 files = []
57 try:
57 try:
58 if not ignored and not self.inotifyserver:
58 if not ignored and not self.inotifyserver:
59 result = client.query(ui, repo, files, match, False,
59 result = client.query(ui, repo, files, match, False,
@@ -562,7 +562,7 b' def filelog(web, req, tmpl):'
562 "branch": webutil.nodebranchnodefault(ctx),
562 "branch": webutil.nodebranchnodefault(ctx),
563 "inbranch": webutil.nodeinbranch(web.repo, ctx),
563 "inbranch": webutil.nodeinbranch(web.repo, ctx),
564 "branches": webutil.nodebranchdict(web.repo, ctx)})
564 "branches": webutil.nodebranchdict(web.repo, ctx)})
565
565
566 if limit > 0:
566 if limit > 0:
567 l = l[:limit]
567 l = l[:limit]
568
568
@@ -137,7 +137,7 b' class templater(object):'
137 stream = util.increasingchunks(stream, min=self.minchunk,
137 stream = util.increasingchunks(stream, min=self.minchunk,
138 max=self.maxchunk)
138 max=self.maxchunk)
139 return stream
139 return stream
140
140
141 def expand(self, t, **map):
141 def expand(self, t, **map):
142 '''Perform expansion. t is name of map element to expand. map contains
142 '''Perform expansion. t is name of map element to expand. map contains
143 added elements for use during expansion. Is a generator.'''
143 added elements for use during expansion. Is a generator.'''
General Comments 0
You need to be logged in to leave comments. Login now