# HG changeset patch # User Sean Farley # Date 1376505176 18000 # Node ID 0af73d7869a684888b1aa401baaf976358e4446c # Parent 7299ef0f0a8b1100c84d13b684fa94499b6c5443 workingfilectx: remove unneeded __repr__ since it is now inherited diff -r 7299ef0f0a8b -r 0af73d7869a6 mercurial/context.py --- a/mercurial/context.py Thu Aug 15 13:09:34 2013 -0500 +++ b/mercurial/context.py Wed Aug 14 13:32:56 2013 -0500 @@ -1202,9 +1202,6 @@ def __nonzero__(self): return True - def __repr__(self): - return "" % str(self) - def data(self): return self._repo.wread(self._path) def renamed(self):