Bugzilla – Attachment 66235 Details for
Bug 54110
Create script to identify most active bug wranglers
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Improve printing
prettier-print.diff (text/plain), 905 bytes, created by
leighman
on 2012-08-28 16:18:37 UTC
(
hide
)
Description:
Improve printing
Filename:
MIME Type:
Creator:
leighman
Created:
2012-08-28 16:18:37 UTC
Size:
905 bytes
patch
obsolete
>diff --git a/bug-wranglers.py b/qawrangler-stats.py >old mode 100644 >new mode 100755 >index 4fcfc79..592b892 >--- a/bug-wranglers.py >+++ b/qawrangler-stats.py >@@ -29,13 +29,14 @@ try: > topreporters = Counter(reporters).most_common(10) > topwranglers = Counter(wranglers).most_common(10) > >- print '=== Top reporters:' >+ print '\n=== ' + month[5:] + ' ' + month[:4] + '===' >+ print '\n--- Top 10 reporters ---' > for reporter in topreporters: >- print reporter[0] + '\t' + str(reporter[1]) >+ print '{0:40}{1:5d}'.format(reporter[0], reporter[1]) > >- print '=== Top wranglers:' >+ print '\n--- Top 10 wranglers ---' > for wrangler in topwranglers: >- print wrangler[0] + '\t' + str(wrangler[1]) >+ print '{0:40}{1:5d}'.format(wrangler[0], wrangler[1]) > > except urllib2.URLError: > print 'Unknown file - give an archive in the form YYYY-Month as argv[1]'
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 54110
:
66182
|
66235
|
66241
|
66242
|
66244
|
66247
|
78586
|
78598