From 9693a4558b5832c98bf2c00d5711cbf85f07c107 Mon Sep 17 00:00:00 2001 From: Michka Popoff Date: Thu, 23 Jan 2014 09:45:23 +0100 Subject: [PATCH] Added missing warnings import There is a warnings call around line 732, but as warnings is not imported, this fails. --- setupext.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setupext.py b/setupext.py index ad2d677b8e40..9f2cb4623027 100644 --- a/setupext.py +++ b/setupext.py @@ -10,6 +10,7 @@ import re import subprocess import sys +import warnings from textwrap import fill