summaryrefslogtreecommitdiff
path: root/bin/docs-create-example-outputs.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/docs-create-example-outputs.py')
-rw-r--r--bin/docs-create-example-outputs.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/docs-create-example-outputs.py b/bin/docs-create-example-outputs.py
index 30dc0eef..b2dfbea6 100644
--- a/bin/docs-create-example-outputs.py
+++ b/bin/docs-create-example-outputs.py
@@ -9,11 +9,11 @@ import sys
import SConsExamples
if __name__ == "__main__":
- print "Checking whether all example names are unique..."
+ print("Checking whether all example names are unique...")
if SConsExamples.exampleNamesAreUnique(os.path.join('doc','user')):
- print "OK"
+ print("OK")
else:
- print "Not all example names and suffixes are unique! Please correct the errors listed above and try again."
+ print("Not all example names and suffixes are unique! Please correct the errors listed above and try again.")
sys.exit(0)
SConsExamples.createAllExampleOutputs(os.path.join('doc','user'))