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 2187D13859E for ; Sun, 20 Jan 2013 15:43:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6D5921C006; Sun, 20 Jan 2013 15:43:17 +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 56E3821C006 for ; Sun, 20 Jan 2013 15:43:17 +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 5651733D929 for ; Sun, 20 Jan 2013 15:43:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id EDB07E4073 for ; Sun, 20 Jan 2013 15:43:14 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1358696559.2247df0227c7c3a1b36126c870bc122aa2cf3785.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/repoman X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 2247df0227c7c3a1b36126c870bc122aa2cf3785 X-VCS-Branch: master Date: Sun, 20 Jan 2013 15:43:14 +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: 18c66a93-efbf-4151-b5a5-a4e48bd0166b X-Archives-Hash: fbb31b4a18715a70cfd8ace7facafa8b commit: 2247df0227c7c3a1b36126c870bc122aa2cf3785 Author: Zac Medico gentoo org> AuthorDate: Sun Jan 20 15:42:39 2013 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Jan 20 15:42:39 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=2247df02 repoman: fix TypeError: must be char, not unicode --- bin/repoman | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/repoman b/bin/repoman index 11f2b13..bfa8d7d 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1084,7 +1084,7 @@ def parsedate(s): m = month_map.get(b) if m is None: return None - m = str(m).rjust(2, '0') + m = "%02d" % m return time.strptime(':'.join((Y, m, d, H_M_S)), '%Y:%m:%d:%H:%M:%S')