From 1ba24ab09b5304cb7cc3a52e893b1d851d2e5558 Mon Sep 17 00:00:00 2001 From: James Lu Date: Wed, 1 Nov 2023 18:54:00 -0700 Subject: [PATCH] Fix version check --- NuWeather/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NuWeather/__init__.py b/NuWeather/__init__.py index 81613ac..7e2c1be 100644 --- a/NuWeather/__init__.py +++ b/NuWeather/__init__.py @@ -34,7 +34,7 @@ NuWeather: a weather plugin for Limnoria import sys -if sys.version_info[0] < (3, 8): +if sys.version_info < (3, 8): raise RuntimeError("This plugin requires Python 3.8 or newer.") import supybot