rss2email: Fix "Python 3.2 or newer" typo fix-python-3.2-or-newer-typo
authorFrançois Boulogne <fboulogne sciunto org>
Sun, 14 Jun 2015 13:22:21 +0000 (09:22 -0400)
committerW. Trevor King <wking@tremily.us>
Sat, 12 Dec 2015 20:12:57 +0000 (12:12 -0800)
Signed-off-by: W. Trevor King <wking@tremily.us>
rss2email/__init__.py

index 205d32e2d2bcd5712a53e13fb1f0f45398f4f3c6..6976c2e3ca0889c60778f291e6ea584f1e1f04e3 100644 (file)
@@ -49,5 +49,5 @@ LOG.setLevel(_logging.ERROR)
 
 if _sys.version_info < (3, 2):
     raise ImportError(
-        "rss2email requires Python 3.2, but you're using:\n{}".format(
-            _sys.version))
+        "rss2email requires Python 3.2 or newer, but you're using:\n{}"
+        .format(_sys.version))