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