summaryrefslogtreecommitdiffstatshomepage
path: root/src/regtests/chdman/chdtest.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/regtests/chdman/chdtest.py')
-rw-r--r--src/regtests/chdman/chdtest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regtests/chdman/chdtest.py b/src/regtests/chdman/chdtest.py
index ed16a1f7780..78ed7cbe746 100644
--- a/src/regtests/chdman/chdtest.py
+++ b/src/regtests/chdman/chdtest.py
@@ -121,15 +121,15 @@ else:
chdmanBin = os.path.normpath(os.path.join(currentDirectory, "..", "..", "..", "chdman"))
if not os.path.exists(chdmanBin):
- print chdmanBin + " does not exist"
+ sys.stderr.write(chdmanBin + " does not exist\n")
sys.exit(1)
if not os.path.exists(inputPath):
- print inputPath + " does not exist"
+ sys.stderr.write(inputPath + " does not exist\n")
sys.exit(1)
if not os.path.exists(outputPath):
- print outputPath + " does not exist"
+ sys.stderr.write(outputPath + " does not exist\n")
sys.exit(1)
if os.path.exists(tempPath):