diff options
author | 2012-12-22 23:04:36 -0800 | |
---|---|---|
committer | 2012-12-22 23:04:36 -0800 | |
commit | e21ce0b047af8e7776ef6750ee1a29cd792aed89 (patch) | |
tree | 0702be1c71642bff3534a25c1e146faee6c29160 | |
parent | fix missed copy/paste edit. (diff) | |
download | gentoo-keys-e21ce0b047af8e7776ef6750ee1a29cd792aed89.tar.gz gentoo-keys-e21ce0b047af8e7776ef6750ee1a29cd792aed89.tar.bz2 gentoo-keys-e21ce0b047af8e7776ef6750ee1a29cd792aed89.zip |
remove the shebang from all lib files, since they won't have an if __main__:
-rw-r--r-- | gkeys/cli.py | 2 | ||||
-rw-r--r-- | gkeys/config.py | 2 | ||||
-rw-r--r-- | gkeys/lib.py | 5 | ||||
-rw-r--r-- | gkeys/log.py | 2 | ||||
-rw-r--r-- | gkeys/seed.py | 2 | ||||
-rw-r--r-- | 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 |