comparison sat/__init__.py @ 3496:c018c510a562

core: remove `print` which may provoke undesired side effects
author Goffi <goffi@goffi.org>
date Wed, 14 Apr 2021 15:54:26 +0200
parents 6f7486683e20
children
comparison
equal deleted inserted replaced
3495:6f7486683e20 3496:c018c510a562
21 version_file = os.path.join(os.path.dirname(__file__), "VERSION") 21 version_file = os.path.join(os.path.dirname(__file__), "VERSION")
22 with open(version_file) as f: 22 with open(version_file) as f:
23 __version__ = f.read().strip() 23 __version__ = f.read().strip()
24 24
25 if not wokkel.installed: 25 if not wokkel.installed:
26 print("installing Wokkel patches")
27 wokkel.install() 26 wokkel.install()