1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
From: Scott Kitterman <scott@kitterman.com>
Date: Sat, 13 Jan 2018 20:37:32 -0500
Subject: Set shebang lines to python3
Forwarded: not-needed
---
xml2rfc/run.py | 2 +-
xml2rfc/walkpdf.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/xml2rfc/run.py b/xml2rfc/run.py
index 9736ccb..83de0cf 100755
--- a/xml2rfc/run.py
+++ b/xml2rfc/run.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
from __future__ import print_function, unicode_literals
diff --git a/xml2rfc/walkpdf.py b/xml2rfc/walkpdf.py
index d94c83b..8d2aef0 100644
--- a/xml2rfc/walkpdf.py
+++ b/xml2rfc/walkpdf.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright The IETF Trust 2018, All Rights Reserved
|