From patchwork Mon May 2 15:21:55 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kamal Mostafa X-Patchwork-Id: 617575 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) by ozlabs.org (Postfix) with ESMTP id 3qz7Mc4pMTz9t3x; Tue, 3 May 2016 01:22:20 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1axFfl-0006tr-JZ; Mon, 02 May 2016 15:22:09 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1axFfh-0006tg-BS for kernel-team@lists.ubuntu.com; Mon, 02 May 2016 15:22:05 +0000 Received: from 1.general.kamal.us.vpn ([10.172.68.52] helo=fourier) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.76) (envelope-from ) id 1axFfg-0007dF-Tv; Mon, 02 May 2016 15:22:05 +0000 Received: from kamal by fourier with local (Exim 4.86_2) (envelope-from ) id 1axFfe-0007Aq-1l; Mon, 02 May 2016 08:22:02 -0700 From: Kamal Mostafa To: Brad Figg Subject: [PATCH][kteam-tools] [morning-bug-report] The hot list report moved to kernel.ubuntu.com Date: Mon, 2 May 2016 08:21:55 -0700 Message-Id: <1462202515-27538-1-git-send-email-kamal@canonical.com> X-Mailer: git-send-email 2.7.4 Cc: kernel-team@lists.ubuntu.com, Kamal Mostafa X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.14 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: kernel-team-bounces@lists.ubuntu.com Signed-off-by: Kamal Mostafa --- stable/morning-bug-report | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stable/morning-bug-report b/stable/morning-bug-report index 7c00187..05b5ef4 100755 --- a/stable/morning-bug-report +++ b/stable/morning-bug-report @@ -193,7 +193,7 @@ class MorningBugReport(): """ retval = None try: - response = urlopen('http://people.canonical.com/~kernel/reports/_kernel_hot_.json') + response = urlopen('http://kernel.ubuntu.com/reports/_kernel_hot_.json') raw = json.loads(response.read()) # In this case, we are only interested in the top 10. That's determined by bug heat. @@ -315,7 +315,7 @@ class MorningBugReport(): #retval += self.hot_list_report(hot_bugs) #retval += '\n' - retval += 'The full Kernel Team Host List can be found at: http://people.canonical.com/~kernel/reports/_kernel_hot_.html\n' + retval += 'The full Kernel Team Hot List can be found at: http://kernel.ubuntu.com/reports/_kernel_hot_.html\n' return retval