diff options
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: |