From fe5594d1aa67c0cd31b25a11ef8cfc98212a4e30 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Thu, 1 Mar 2018 23:27:39 -0600 Subject: [PATCH] Fix bug in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6b03a3f..e04b346 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() -exec(open(os.path.join(here, 'appy', '_version.py')).read()) +exec(open(path.join(here, 'appy', '_version.py')).read()) setup( name='appypod-rattail',