sys.stderr(...) should be sys.stderr.write(), of course
diff --git a/Demo/scripts/mboxconvert.py b/Demo/scripts/mboxconvert.py
index 5567173..ff7ca6a 100755
--- a/Demo/scripts/mboxconvert.py
+++ b/Demo/scripts/mboxconvert.py
@@ -40,7 +40,7 @@
 			sts = dofile(f) or sts
 			f.close()
 		else:
-			sys.stderr('%s: not found\n' % arg)
+			sys.stderr.write('%s: not found\n' % arg)
 			sts = 1
 	if sts:
 		sys.exit(sts)