From 13c18a06d97a5714d14a12d0e7debe18e483ef00 Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Tue, 7 Aug 2007 14:25:44 -0700
Subject: [PATCH] fix missing import -- this bug was introduced by the recent
 patch to relax setuptools version requirements

---
 src/simplejson/setup.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/simplejson/setup.py b/src/simplejson/setup.py
index 92c92709..143a7173 100644
--- a/src/simplejson/setup.py
+++ b/src/simplejson/setup.py
@@ -1,6 +1,7 @@
 #!/usr/bin/env python
 
 import ez_setup
+import sys
 if 'cygwin' in sys.platform.lower():
     min_version='0.6c6'
 else:
-- 
2.45.2