Kaydet (Commit) 7a799fc6 authored tarafından Caolán McNamara's avatar Caolán McNamara

use stdout for errors like everything else

üst 137e02c0
...@@ -162,7 +162,7 @@ def get_through_rss_query_url(url, mimetype, prefix, suffix): ...@@ -162,7 +162,7 @@ def get_through_rss_query_url(url, mimetype, prefix, suffix):
try: try:
get_bug_function(entry['id'], mimetype, prefix, suffix) get_bug_function(entry['id'], mimetype, prefix, suffix)
except: except:
print >> sys.stderr, entry['id'], "failed:", sys.exc_info()[0] print entry['id'], "failed:", sys.exc_info()[0]
pass pass
def get_through_rss_query(queryurl, mimetype, prefix, suffix): def get_through_rss_query(queryurl, mimetype, prefix, suffix):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment