# HG changeset patch # User Francisco J Ballesteros # Date 1317068544 -7200 # Node ID f1db8d07b1977a317eef00d5d29649e2ecabdfdf # Parent 2e796f9cc420b9fb20220235a9a2132c97b47244 codereview: unfix the unfix, i.e., fix make messages synchronous again R=nix-dev, rminnich CC=nix-dev http://codereview.appspot.com/5142045 diff -r 2e796f9cc420 -r f1db8d07b197 sys/lib/codereview/codereview.py --- a/sys/lib/codereview/codereview.py Mon Sep 26 10:50:36 2011 -0700 +++ b/sys/lib/codereview/codereview.py Mon Sep 26 22:22:24 2011 +0200 @@ -556,9 +556,9 @@ # with requests for passwords, and things become very # confussing. def set_status(s): -# print >>sys.stderr, "\t", time.asctime(), s - global global_status - global_status = s + print >>sys.stderr, "\t", time.asctime(), s +# global global_status +# global_status = s #unused class StatusThread(threading.Thread): @@ -1578,7 +1578,7 @@ def reposetup(ui, repo): global original_match if original_match is None: - start_status_thread() + #start_status_thread() original_match = scmutil.match scmutil.match = ReplacementForCmdutilMatch RietveldSetup(ui, repo)