diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2017-10-20 09:37:41 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2017-10-20 09:37:50 +0200 |
commit | 7ae5fbd1e6d995863805678d85cf4a5fb4ed91bd (patch) | |
tree | 13cd3560a66b4d0e853ed0810edbaed884f3f77b /doc | |
parent | 5b2bdd171ef6daf1c10210d954c4c03083625b71 (diff) | |
download | kstreamripper-7ae5fbd1e6d995863805678d85cf4a5fb4ed91bd.tar.gz kstreamripper-7ae5fbd1e6d995863805678d85cf4a5fb4ed91bd.zip |
Fix FTBFS with SCons 3.x
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit ef18cc16faccdac7bee9a7e2c2cbaf4a0eaf30f1)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/SConscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/SConscript b/doc/SConscript index 0f5f215..9c3bbe5 100644 --- a/doc/SConscript +++ b/doc/SConscript @@ -8,7 +8,7 @@ ## First load the environment set in the top-level SConstruct file Import( 'env' ) -myenv=env.Copy() +myenv=env.Clone() ## The following looks complicated but it is not ## We first define a function to install all files as documentation @@ -70,7 +70,7 @@ def processfolder(folder, lang, destination=""): if len(docbook_list) == 0: return if not os.path.isfile( folder+'index.docbook' ): - print "Error, index.docbook was not found in "+folder+'/index.docbook' + print("Error, index.docbook was not found in "+folder+'/index.docbook') return if i_am_a_documentation_writer: for file in docbook_list: |