From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PorVX-0004be-OJ for garchives@archives.gentoo.org; Mon, 14 Feb 2011 06:01:59 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 326D5E0999; Mon, 14 Feb 2011 06:00:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 01634E0994 for ; Mon, 14 Feb 2011 06:00:27 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A47FE1B41D3 for ; Mon, 14 Feb 2011 06:00:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 192768006E for ; Mon, 14 Feb 2011 06:00:27 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <8802626d9ca6c325213f3d19b7da696892c6c1fe.dol-sen@gentoo> Subject: [gentoo-commits] proj/layman:master commit in: layman/ X-VCS-Repository: proj/layman X-VCS-Files: layman/api.py X-VCS-Directories: layman/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 8802626d9ca6c325213f3d19b7da696892c6c1fe Date: Mon, 14 Feb 2011 06:00:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 02b8e1c3bc1ce3b04e142d25582828bd commit: 8802626d9ca6c325213f3d19b7da696892c6c1fe Author: Brian Dolbec gmail com> AuthorDate: Fri Jul 16 21:04:24 2010 +0000 Commit: Brian Dolbec gmail com> CommitDate: Fri Feb 11 10:49:14 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/layman.git;a=3D= commit;h=3D8802626d remove the extra comma that wrapped the dict in a tuple. --- layman/api.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/layman/api.py b/layman/api.py index c4e6a15..7784861 100644 --- a/layman/api.py +++ b/layman/api.py @@ -211,7 +211,7 @@ class LaymanAPI(object): 'status': overlay.status, 'official': overlay.is_official(), 'supported': overlay.is_supported(), - }, + } =20 return result =20