From 58e2ef6ccdd37ec6e542a49be5624fcb352ae9a0 Mon Sep 17 00:00:00 2001
From: Donald Stufft <donald.stufft@gmail.com>
Date: Fri, 22 Feb 2013 01:58:03 -0500
Subject: [PATCH] Fix the setup.py function in Python3

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 638a8be5..d9f2d7b1 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from setuptools import setup
 __about__ = {}
 
 with open("nacl/__about__.py") as fp:
-    exec(fp, None, __about__)
+    exec(fp.read(), None, __about__)
 
 
 try:
-- 
GitLab