diff options
author | Justus Winter <[email protected]> | 2016-09-14 08:51:49 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-09-14 10:15:57 +0000 |
commit | 3b37c4efcf68657a856dbce60c0bd0fc78dd0770 (patch) | |
tree | eb693ae9599bc2143d56c72142b7e4a8fc313b32 /lang/python/examples | |
parent | core: New function gpgme_op_adduid. (diff) | |
download | gpgme-3b37c4efcf68657a856dbce60c0bd0fc78dd0770.tar.gz gpgme-3b37c4efcf68657a856dbce60c0bd0fc78dd0770.zip |
python: Use more generic shebang.
--
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python/examples')
-rw-r--r-- | lang/python/examples/assuan.py | 2 | ||||
-rw-r--r-- | lang/python/examples/decryption-filter.py | 2 | ||||
-rwxr-xr-x | lang/python/examples/delkey.py | 2 | ||||
-rwxr-xr-x | lang/python/examples/encrypt-to-all.py | 2 | ||||
-rwxr-xr-x | lang/python/examples/exportimport.py | 2 | ||||
-rwxr-xr-x | lang/python/examples/genkey.py | 2 | ||||
-rw-r--r-- | lang/python/examples/inter-edit.py | 2 | ||||
-rwxr-xr-x | lang/python/examples/sign.py | 2 | ||||
-rwxr-xr-x | lang/python/examples/signverify.py | 2 | ||||
-rwxr-xr-x | lang/python/examples/simple.py | 2 | ||||
-rw-r--r-- | lang/python/examples/testCMSgetkey.py | 2 | ||||
-rwxr-xr-x | lang/python/examples/verifydetails.py | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/lang/python/examples/assuan.py b/lang/python/examples/assuan.py index 82b1e1d7..e4822b72 100644 --- a/lang/python/examples/assuan.py +++ b/lang/python/examples/assuan.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python # # Copyright (C) 2016 g10 Code GmbH # diff --git a/lang/python/examples/decryption-filter.py b/lang/python/examples/decryption-filter.py index 1647ca3b..dbd66fc3 100644 --- a/lang/python/examples/decryption-filter.py +++ b/lang/python/examples/decryption-filter.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python # # Copyright (C) 2016 g10 Code GmbH # diff --git a/lang/python/examples/delkey.py b/lang/python/examples/delkey.py index e607f219..491f38a1 100755 --- a/lang/python/examples/delkey.py +++ b/lang/python/examples/delkey.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python # # Copyright (C) 2016 g10 Code GmbH # Copyright (C) 2004,2008 Igor Belyi <[email protected]> diff --git a/lang/python/examples/encrypt-to-all.py b/lang/python/examples/encrypt-to-all.py index 4586f938..304b4747 100755 --- a/lang/python/examples/encrypt-to-all.py +++ b/lang/python/examples/encrypt-to-all.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python # # Copyright (C) 2016 g10 Code GmbH # Copyright (C) 2008 Igor Belyi <[email protected]> diff --git a/lang/python/examples/exportimport.py b/lang/python/examples/exportimport.py index 39b1595c..8d76fa13 100755 --- a/lang/python/examples/exportimport.py +++ b/lang/python/examples/exportimport.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python # # Copyright (C) 2016 g10 Code GmbH # Copyright (C) 2004,2008 Igor Belyi <[email protected]> diff --git a/lang/python/examples/genkey.py b/lang/python/examples/genkey.py index 66e382bc..972fed79 100755 --- a/lang/python/examples/genkey.py +++ b/lang/python/examples/genkey.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python # # Copyright (C) 2016 g10 Code GmbH # Copyright (C) 2004 Igor Belyi <[email protected]> diff --git a/lang/python/examples/inter-edit.py b/lang/python/examples/inter-edit.py index 8199cc63..2f8e4efe 100644 --- a/lang/python/examples/inter-edit.py +++ b/lang/python/examples/inter-edit.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python # # Copyright (C) 2016 g10 Code GmbH # Copyright (C) 2005 Igor Belyi <[email protected]> diff --git a/lang/python/examples/sign.py b/lang/python/examples/sign.py index 0dd6a7c3..d3766833 100755 --- a/lang/python/examples/sign.py +++ b/lang/python/examples/sign.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python # # Copyright (C) 2016 g10 Code GmbH # Copyright (C) 2002 John Goerzen <[email protected]> diff --git a/lang/python/examples/signverify.py b/lang/python/examples/signverify.py index 7a24d719..e7bf0c94 100755 --- a/lang/python/examples/signverify.py +++ b/lang/python/examples/signverify.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python # # Copyright (C) 2016 g10 Code GmbH # Copyright (C) 2004,2008 Igor Belyi <[email protected]> diff --git a/lang/python/examples/simple.py b/lang/python/examples/simple.py index 50a3938b..ca72cf11 100755 --- a/lang/python/examples/simple.py +++ b/lang/python/examples/simple.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python # # Copyright (C) 2016 g10 Code GmbH # Copyright (C) 2005 Igor Belyi <[email protected]> diff --git a/lang/python/examples/testCMSgetkey.py b/lang/python/examples/testCMSgetkey.py index 7c642e68..fbaa042b 100644 --- a/lang/python/examples/testCMSgetkey.py +++ b/lang/python/examples/testCMSgetkey.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python # # Copyright (C) 2016 g10 Code GmbH # Copyright (C) 2008 Bernhard Reiter <[email protected]> diff --git a/lang/python/examples/verifydetails.py b/lang/python/examples/verifydetails.py index b57ed84f..1cd538c7 100755 --- a/lang/python/examples/verifydetails.py +++ b/lang/python/examples/verifydetails.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python # # Copyright (C) 2016 g10 Code GmbH # Copyright (C) 2004,2008 Igor Belyi <[email protected]> |