# HG changeset patch # User Pierre-Yves David # Date 1372322680 -7200 # Node ID 39be1e548270c63a213d552e6d40adfd55b4496a # Parent 9d1b5f07d9ca3250bc601b675fb465f48024aa44 [client-connection] explicit the client part in __repr__ Now that we have real server side connection we need to remove ambiguity. diff -r 9d1b5f07d9ca -r 39be1e548270 repoapi.py --- a/repoapi.py Tue Jun 25 19:50:16 2013 +0200 +++ b/repoapi.py Thu Jun 27 10:44:40 2013 +0200 @@ -176,8 +176,8 @@ def __repr__(self): if self.anonymous_connection: - return '' % self._cnxid - return '' % self._cnxid + return '' % self._cnx.connectionid + return '' % self._cnx.connectionid # end silly BC @property