Index: trunk/pstamp/scripts/pstamp_webrequest.pl
===================================================================
--- trunk/pstamp/scripts/pstamp_webrequest.pl	(revision 16959)
+++ trunk/pstamp/scripts/pstamp_webrequest.pl	(revision 16974)
@@ -84,9 +84,11 @@
     my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
         run(command => $command, verbose => $verbosity);
-    unless ($success) {
-        die("Unable to perform pstampparse: $error_code");
+
+    if ($success) {
+        ### print "Matching Images:\n";
+        print @$stdout_buf;
+    } else {
+        print @$stderr_buf;
     }
-    ### print "Matching Images:\n";
-    print @$stdout_buf;
     exit 0;
 }
