# HG changeset patch # User Benoit Boissinot # Date 1265392208 -3600 # Node ID 23e608f42f2c29c6c814a3fbae1b1cac5f77b233 # Parent b9e44cc97355ff27e05f6cd384061fc12731cec0 fix spaces/identation issues diff -r b9e44cc97355 -r 23e608f42f2c mercurial/commands.py --- a/mercurial/commands.py Wed Feb 03 16:09:19 2010 +0000 +++ b/mercurial/commands.py Fri Feb 05 18:50:08 2010 +0100 @@ -1648,7 +1648,7 @@ opt_output.append(("\n%s" % title, None)) for shortopt, longopt, default, desc in options: if _("DEPRECATED") in desc and not ui.verbose: - continue + continue opt_output.append(("%2s%s" % (shortopt and "-%s" % shortopt, longopt and " --%s" % longopt), "%s%s" % (desc, diff -r b9e44cc97355 -r 23e608f42f2c mercurial/filemerge.py --- a/mercurial/filemerge.py Wed Feb 03 16:09:19 2010 +0000 +++ b/mercurial/filemerge.py Fri Feb 05 18:50:08 2010 +0100 @@ -60,8 +60,8 @@ for pat, tool in ui.configitems("merge-patterns"): mf = match.match(repo.root, '', [pat]) if mf(path) and check(tool, pat, symlink, False): - toolpath = _findtool(ui, tool) - return (tool, '"' + toolpath + '"') + toolpath = _findtool(ui, tool) + return (tool, '"' + toolpath + '"') # then merge tools tools = {} diff -r b9e44cc97355 -r 23e608f42f2c mercurial/hgweb/wsgicgi.py --- a/mercurial/hgweb/wsgicgi.py Wed Feb 03 16:09:19 2010 +0000 +++ b/mercurial/hgweb/wsgicgi.py Fri Feb 05 18:50:08 2010 +0100 @@ -30,7 +30,7 @@ environ['wsgi.multiprocess'] = True environ['wsgi.run_once'] = True - if environ.get('HTTPS','off').lower() in ('on','1','yes'): + if environ.get('HTTPS', 'off').lower() in ('on', '1', 'yes'): environ['wsgi.url_scheme'] = 'https' else: environ['wsgi.url_scheme'] = 'http' diff -r b9e44cc97355 -r 23e608f42f2c mercurial/lsprof.py --- a/mercurial/lsprof.py Wed Feb 03 16:09:19 2010 +0000 +++ b/mercurial/lsprof.py Fri Feb 05 18:50:08 2010 +0100 @@ -96,7 +96,7 @@ mname = _fn2mod[code.co_filename] = k break else: - mname = _fn2mod[code.co_filename] = '<%s>'%code.co_filename + mname = _fn2mod[code.co_filename] = '<%s>' % code.co_filename return '%s:%d(%s)' % (mname, code.co_firstlineno, code.co_name) diff -r b9e44cc97355 -r 23e608f42f2c mercurial/store.py --- a/mercurial/store.py Wed Feb 03 16:09:19 2010 +0000 +++ b/mercurial/store.py Fri Feb 05 18:50:08 2010 +0100 @@ -293,7 +293,7 @@ if (mode not in ('r', 'rb') and path.startswith('data/') and path not in fnc): - fnc.add(path) + fnc.add(path) return op(hybridencode(path), mode, *args, **kw) self.opener = fncacheopener diff -r b9e44cc97355 -r 23e608f42f2c mercurial/templater.py --- a/mercurial/templater.py Wed Feb 03 16:09:19 2010 +0000 +++ b/mercurial/templater.py Fri Feb 05 18:50:08 2010 +0100 @@ -95,10 +95,10 @@ except KeyError, i: raise SyntaxError(_("unknown filter '%s'") % i[0]) def apply(get): - x = get(val) - for f in filters: - x = f(x) - return x + x = get(val) + for f in filters: + x = f(x) + return x self.cache[expr] = apply return self.cache[expr](get)