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 C6BA61381F3 for ; Sun, 23 Jun 2013 07:14:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 671A1E0967; Sun, 23 Jun 2013 07:13:58 +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 B9716E0966 for ; Sun, 23 Jun 2013 07:13:57 +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 7BD5E33E562 for ; Sun, 23 Jun 2013 07:13:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 26436E468F for ; Sun, 23 Jun 2013 07:13:55 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1356246276.e21ce0b047af8e7776ef6750ee1a29cd792aed89.dol-sen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys/cli.py gkeys/config.py gkeys/lib.py gkeys/log.py gkeys/seed.py gkeys/utils.py X-VCS-Directories: gkeys/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: e21ce0b047af8e7776ef6750ee1a29cd792aed89 X-VCS-Branch: master Date: Sun, 23 Jun 2013 07:13:55 +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: cd89d8bc-31ba-4645-9d7b-d2e582211c27 X-Archives-Hash: 9f2d47f984de05ce001879883bd796e0 commit: e21ce0b047af8e7776ef6750ee1a29cd792aed89 Author: Brian Dolbec gentoo org> AuthorDate: Sun Dec 23 07:04:36 2012 +0000 Commit: Brian Dolbec gmail com> CommitDate: Sun Dec 23 07:04:36 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=e21ce0b0 remove the shebang from all lib files, since they won't have an if __main__: --- gkeys/cli.py | 2 +- gkeys/config.py | 2 +- gkeys/lib.py | 5 +---- gkeys/log.py | 2 +- gkeys/seed.py | 2 +- gkeys/utils.py | 2 +- 6 files changed, 6 insertions(+), 9 deletions(-) diff --git a/gkeys/cli.py b/gkeys/cli.py index b000f58..d3d0786 100644 --- a/gkeys/cli.py +++ b/gkeys/cli.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +# #-*- coding:utf-8 -*- """ diff --git a/gkeys/config.py b/gkeys/config.py index 3695242..1daca70 100644 --- a/gkeys/config.py +++ b/gkeys/config.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +# #-*- coding:utf-8 -*- """ diff --git a/gkeys/lib.py b/gkeys/lib.py index cc95fca..cb6fb96 100644 --- a/gkeys/lib.py +++ b/gkeys/lib.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +# #-*- coding:utf-8 -*- '''Gentoo-keys - lib.py @@ -98,6 +98,3 @@ class GkeysGPG(GPG): ''' pass - - def - diff --git a/gkeys/log.py b/gkeys/log.py index a584f67..c0a33e7 100644 --- a/gkeys/log.py +++ b/gkeys/log.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +# #-*- coding:utf-8 -*- """ diff --git a/gkeys/seed.py b/gkeys/seed.py index 95aae9f..d045a22 100644 --- a/gkeys/seed.py +++ b/gkeys/seed.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +# #-*- coding:utf-8 -*- '''Gentoo-keys - seed.py diff --git a/gkeys/utils.py b/gkeys/utils.py index bfbed83..0cbcdea 100644 --- a/gkeys/utils.py +++ b/gkeys/utils.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +# # -*- coding: utf-8 -*- '''# File: xml.py