From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 843C3138202 for ; Mon, 2 Sep 2013 16:21:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 576F8E0D69; Mon, 2 Sep 2013 16:21:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 938C1E0D66 for ; Mon, 2 Sep 2013 16:21:15 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A4A2D33EB36 for ; Mon, 2 Sep 2013 16:21:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 5C645E545E for ; Mon, 2 Sep 2013 16:21:13 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1378138639.9c05fda7d8e19f02f833d115f149bf61ce0cbdae.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/remote/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/remote/basicrepo.py X-VCS-Directories: roverlay/remote/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 9c05fda7d8e19f02f833d115f149bf61ce0cbdae X-VCS-Branch: master Date: Mon, 2 Sep 2013 16:21:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cd16a93f-5627-40e3-b7cd-f786b72a2088 X-Archives-Hash: 3a1d195ace8a98c7fe2801893dd67167 commit: 9c05fda7d8e19f02f833d115f149bf61ce0cbdae Author: André Erdmann mailerd de> AuthorDate: Mon Sep 2 16:17:19 2013 +0000 Commit: André Erdmann mailerd de> CommitDate: Mon Sep 2 16:17:19 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=9c05fda7 roverlay/remote/basicrepo: get_identifier() --- roverlay/remote/basicrepo.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roverlay/remote/basicrepo.py b/roverlay/remote/basicrepo.py index e14d317..9aebfac 100644 --- a/roverlay/remote/basicrepo.py +++ b/roverlay/remote/basicrepo.py @@ -97,6 +97,10 @@ class BasicRepo ( object ): self.sync_status = 0 # --- end of __init__ (...) --- + def get_identifier ( self ): + return id ( self ) + # --- end of get_identifier (...) --- + def reset ( self ): self.sync_status = 0 # --- end of reset (...) ---