diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-18 13:01:29 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-18 13:03:23 +0100 |
commit | 7a799fc6ada8d3e5ea2bd0b2617e3a8e7405997a (patch) | |
tree | 4d0dbcd9dfb92ee43a120b3f29cf9bab641371e1 /bin | |
parent | 137e02c0adfacaf8c5fc08dd5cc445be7fdfa6e5 (diff) |
use stdout for errors like everything else
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/get-bugzilla-attachments-by-mimetype | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/get-bugzilla-attachments-by-mimetype b/bin/get-bugzilla-attachments-by-mimetype index c719fc33637f..cf79a7936635 100755 --- a/bin/get-bugzilla-attachments-by-mimetype +++ b/bin/get-bugzilla-attachments-by-mimetype @@ -162,7 +162,7 @@ def get_through_rss_query_url(url, mimetype, prefix, suffix): try: get_bug_function(entry['id'], mimetype, prefix, suffix) except: - print >> sys.stderr, entry['id'], "failed:", sys.exc_info()[0] + print entry['id'], "failed:", sys.exc_info()[0] pass def get_through_rss_query(queryurl, mimetype, prefix, suffix): |