From bf30c5050a57997c2b02566c8e42e12705dc3280 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Thu, 2 May 2013 11:31:47 +0200 Subject: [PATCH] more robust setup.py for cleanups --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8ce7dbae..e6c041aa 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,11 @@ from glob import glob import shutil from distutils.core import setup -from sfa.util.version import version_tag +# while cleaning up we might not have this.. +try: + from sfa.util.version import version_tag +except: + version_tag='cleaningup' scripts = glob("clientbin/*.py") + \ [ -- 2.43.0