From 103914b7e72c3ce5c4b4953bb1c885341a3ac13a Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Sat, 5 Jun 2021 17:57:20 +0200 Subject: [PATCH] Switch to Python 3 as default Discourage the usage of Python 2 by using Python 3 as default Python everywhere. --- src/xdgmenumaker | 2 +- tests/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xdgmenumaker b/src/xdgmenumaker index 2478912..9d22ec7 100755 --- a/src/xdgmenumaker +++ b/src/xdgmenumaker @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # coding: utf-8 # vim:et:sta:sts=4:sw=4:ts=8:tw=79: diff --git a/tests/Makefile b/tests/Makefile index 0f048cf..2bbdd91 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,5 +1,5 @@ MM ?= ../src/xdgmenumaker -PYTHON ?= python +PYTHON ?= python3 test: clean generate @for i in `ls menus_correct/`; do \