Author: rhuijben Date: Wed Oct 4 14:56:22 2017 New Revision: 1811083 URL: http://svn.apache.org/viewvc?rev=1811083&view=rev Log: Fix syntax of a print() in the scons file to unbreak building with most recent scons version.
* SConstruct Use Python 3.0 valid syntax to make Scons 3.0.0 happy on both python 3.0 and 2.7. Modified: serf/trunk/SConstruct Modified: serf/trunk/SConstruct URL: http://svn.apache.org/viewvc/serf/trunk/SConstruct?rev=1811083&r1=1811082&r2=1811083&view=diff ============================================================================== --- serf/trunk/SConstruct (original) +++ serf/trunk/SConstruct Wed Oct 4 14:56:22 2017 @@ -199,7 +199,7 @@ CALLOUT_OKAY = not (env.GetOption('clean unknown = opts.UnknownVariables() if unknown: - print 'Warning: Used unknown variables:', ', '.join(unknown.keys()) + print('Warning: Used unknown variables:', ', '.join(unknown.keys())) apr = str(env['APR']) apu = str(env['APU'])