From 0ff864f6c24195a1275b64c6a812bd704429cc89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= Date: Sun, 18 Jun 2017 13:47:45 +0100 Subject: Use python3 in the shebang to mark this as not Python 2-compatible. Thanks to DorianScholz for pointing this out in pull request #14, and pointing me at https://www.python.org/dev/peps/pep-0394/. --- glucometer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glucometer.py b/glucometer.py index 6622a88..f4c1be7 100755 --- a/glucometer.py +++ b/glucometer.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """Utility to manage glucometers' data.""" -- cgit v1.2.3