From: Gunnar Beutner Date: Sat, 30 Aug 2014 22:47:05 +0000 (+0200) Subject: Enable 2to3 for the Python scripts X-Git-Tag: v2.1.1~52 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea4ad843e898011ff64dc582de81361eb5fff520;p=icinga2 Enable 2to3 for the Python scripts fixes #7037 --- diff --git a/python/setup.py.cmake b/python/setup.py.cmake index ce8e1e04a..1d4c5bd64 100644 --- a/python/setup.py.cmake +++ b/python/setup.py.cmake @@ -15,6 +15,7 @@ setup( packages = find_packages(), entry_points = { 'console_scripts': [ 'icinga2-list-objects=icinga2.commands.list_objects:main' ] - } + }, + use_2to3 = True )