mercurial/hg.py
changeset 10282 08a0f04b56bd
parent 10263 25e572394f5c
child 10358 d42821cd5c96
--- a/mercurial/hg.py	Mon Jan 25 00:05:22 2010 -0600
+++ b/mercurial/hg.py	Mon Jan 25 00:05:27 2010 -0600
@@ -348,7 +348,8 @@
 def clean(repo, node, show_stats=True):
     """forcibly switch the working directory to node, clobbering changes"""
     stats = _merge.update(repo, node, False, True, None)
-    if show_stats: _showstats(repo, stats)
+    if show_stats:
+        _showstats(repo, stats)
     return stats[3] > 0
 
 def merge(repo, node, force=None, remind=True):