From e10a5de17605c7c0a941bb5364bf4079890161c6 Mon Sep 17 00:00:00 2001 From: "Laszlo Boszormenyi (GCS)" Date: Tue, 24 Mar 2020 18:20:00 +0000 Subject: [PATCH] execute examples with Pyhton 3 Last-Update: 2020-03-24 Update shebang to call Python 3 binary. Gbp-Pq: Name python3ify_examples.patch --- examples/add_person.py | 2 +- examples/list_people.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/add_person.py b/examples/add_person.py index aa0fbca..c65c359 100755 --- a/examples/add_person.py +++ b/examples/add_person.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # See README.txt for information and build instructions. diff --git a/examples/list_people.py b/examples/list_people.py index d2c294c..6f61697 100755 --- a/examples/list_people.py +++ b/examples/list_people.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # See README.txt for information and build instructions. -- 2.30.2