diff options
author | David Robillard <d@drobilla.net> | 2011-03-06 00:40:38 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-03-06 00:40:38 +0000 |
commit | e625510e40ab43400a4e7004c763fa3734dc1775 (patch) | |
tree | b00cee42328cf34e6342c615275ccd6bc5dc147c /wscript | |
parent | 093ca09fcb6ae0c97f63cb809eaa301c480d3e83 (diff) | |
download | ingen-e625510e40ab43400a4e7004c763fa3734dc1775.tar.gz ingen-e625510e40ab43400a4e7004c763fa3734dc1775.tar.bz2 ingen-e625510e40ab43400a4e7004c763fa3734dc1775.zip |
Python 2/3: Use print('') instead of print() to print empty lines.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3042 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -111,7 +111,7 @@ def configure(conf): autowaf.display_msg(conf, "HTTP", str(conf.env['HAVE_SOUP'] == 1)) autowaf.display_msg(conf, "LV2", str(conf.env['HAVE_SLV2'] == 1)) autowaf.display_msg(conf, "GUI", str(conf.env['INGEN_BUILD_GUI'] == 1)) - print() + print('') def build(bld): opts = Options.options |