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:41 +0200 |
commit | ef18cc16faccdac7bee9a7e2c2cbaf4a0eaf30f1 (patch) | |
tree | b148dce1d311dc51f8a3b7ef6387fb829fc0f152 /doc | |
parent | fc8ec3fd3e42e60bf0607176f8c8abe4ff35c0ed (diff) | |
download | kstreamripper-ef18cc16faccdac7bee9a7e2c2cbaf4a0eaf30f1.tar.gz kstreamripper-ef18cc16faccdac7bee9a7e2c2cbaf4a0eaf30f1.zip |
Fix FTBFS with SCons 3.x
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
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: |