From 732d27ebd0e711fc43e8118c759a1c83bdec555f Mon Sep 17 00:00:00 2001 From: Alina Lenk Date: Sat, 19 Feb 2022 01:33:56 +0100 Subject: [PATCH] Fix Python version comment in generate_packets.py See osdn #43745 Signed-off-by: Alina Lenk --- common/generate_packets.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/common/generate_packets.py b/common/generate_packets.py index c8aff4b10d..535fba77ce 100755 --- a/common/generate_packets.py +++ b/common/generate_packets.py @@ -30,9 +30,8 @@ fold_bool_into_header=1 ################# END OF PARAMETERS #################### -# This program runs under any python version since 1.5. -# Please leave it so. In particular use the string -# module and not the function of the string type. +# This script runs under any version of Python 3. Please leave it so. +# It might also run under older versions, but no such guarantees are made. import re, string, os, sys -- 2.17.1