Reviewers: ihab.awad,

Description:
Right now, 'appspot.py show' generates text that looks like:

  Issue 87065  http://codereview.appspot.com/87065
  Make any object throwable in Valija.  Addresses  issue 1036 .

The problem is that svn and other tools will show just
the first line in compact listings.  So, history summaries
end up being a series of meaningless appspot issue numbers.

This change makes appspot.py print the summary first.

Please review this at http://codereview.appspot.com/90087

Affected files:
  M     tools/appspot.py


Index: tools/appspot.py
===================================================================
--- tools/appspot.py    (revision 3549)
+++ tools/appspot.py    (working copy)
@@ -163,8 +163,8 @@
   return ('''


+%(message)s
 Issue %(issue)s  %(url)s
-%(message)s

 %(description)s

@@ -378,7 +378,7 @@

   # Load any existing changelist
   if os.path.isfile(cl_file_path):
-    print >>sys.stderr, 'reading from %s' % cl_file_path
+    print >>sys.stderr, 'reading from %s\n' % cl_file_path
     current_cl = parse_change(open(cl_file_path).read())
   else:
     current_cl = ChangeList()


Reply via email to