From 90c1cb3f0fefc8316b358f1f25133335f73273c9 Mon Sep 17 00:00:00 2001 From: Greg Rose Date: Fri, 21 Aug 2020 13:30:07 -0700 Subject: python: Fixup python shebangs to python3. Builds on RHEL 8.2 systems are failing due to this issue. See [1] as to why this is necessary. I used the following command to identify files that need this fix: find . -type f -executable | /usr/lib/rpm/redhat/brp-mangle-shebangs I also updated the copyright notices as needed. 1. https://fedoraproject.org/wiki/Changes/Make_ambiguous_python_shebangs_error Fixes: 1ca0323e7c29 ("Require Python 3 and remove support for Python 2.") Signed-off-by: Greg Rose Acked-by: Aaron Conole Signed-off-by: Ilya Maximets --- ovsdb/ovsdb-doc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ovsdb/ovsdb-doc') diff --git a/ovsdb/ovsdb-doc b/ovsdb/ovsdb-doc index 406c29311..10d0c0c13 100755 --- a/ovsdb/ovsdb-doc +++ b/ovsdb/ovsdb-doc @@ -1,6 +1,6 @@ -#! /usr/bin/python +#!/usr/bin/python3 -# Copyright (c) 2010, 2011, 2012, 2013, 2014, 2015 Nicira, Inc. +# Copyright (c) 2010, 2011, 2012, 2013, 2014, 2015, 2020 Nicira, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. -- cgit v1.2.1