# HG changeset patch # User Martin Geisler # Date 1336754464 -7200 # Node ID 654b9e1966f76d38b11fbd1d518efce5d58caa88 # Parent f29f187ee73d36a1c3d648cd9967d168966b1757 progress: fix indentation diff -r f29f187ee73d -r 654b9e1966f7 hgext/progress.py --- a/hgext/progress.py Fri May 11 15:13:13 2012 +0200 +++ b/hgext/progress.py Fri May 11 18:41:04 2012 +0200 @@ -237,7 +237,7 @@ # truncate the list of topics assuming all topics within # this one are also closed if topic in self.topics: - self.topics = self.topics[:self.topics.index(topic)] + self.topics = self.topics[:self.topics.index(topic)] else: if topic not in self.topics: self.starttimes[topic] = now