From f3b46ad15c9c8bf0d9c549e62a06c948b7627df3 Mon Sep 17 00:00:00 2001 From: Alexander Petrov Date: Fri, 15 Nov 2019 09:39:55 +0000 Subject: [PATCH] Code review: fixed comments --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 46bf28d..c7561cb 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ MODULE_SOURCES = ['cpp-jsonnet/python/_jsonnet.c'] def get_version(): """ - Parses the version out of libjsonnet.h + Parses the version out of vm.go """ with open(os.path.join(DIR, 'vm.go')) as f: for line in f: @@ -41,7 +41,7 @@ class BuildJsonnetExt(BuildExt): p.wait() if p.returncode != 0: - raise Exception('Could not build libgojsonnet.so') + raise Exception('Could not build libgojsonnet.a') BuildExt.run(self)