diff mbox series

[kteam-tools] gen-sru-announce: Move patch submission deadline to Wednesday

Message ID 1533736276-14004-1-git-send-email-stefan.bader@canonical.com
State New
Headers show
Series [kteam-tools] gen-sru-announce: Move patch submission deadline to Wednesday | expand

Commit Message

Stefan Bader Aug. 8, 2018, 1:51 p.m. UTC
Move the deadline ahead by 2 days to allow for review before
the Friday.

Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
---
 stable/gen-sru-announce | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Po-Hsu Lin Aug. 10, 2018, 2:51 a.m. UTC | #1
Acked-by: Po-Hsu Lin <po-hsu.lin@canonical.com>
Marcelo Henrique Cerri Aug. 10, 2018, 12:10 p.m. UTC | #2
Acked-by: Marcelo Henrique Cerri <marcelo.cerri@canonical.com>
Kleber Sacilotto de Souza Aug. 14, 2018, 11:41 a.m. UTC | #3
On 08/08/18 15:51, Stefan Bader wrote:
> Move the deadline ahead by 2 days to allow for review before
> the Friday.
> 
> Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
> ---
>  stable/gen-sru-announce | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/stable/gen-sru-announce b/stable/gen-sru-announce
> index 05fc7ab..5fd9143 100755
> --- a/stable/gen-sru-announce
> +++ b/stable/gen-sru-announce
> @@ -42,12 +42,13 @@ class TheApp(object):
>      #
>      def print_cycle(s, sd):
>          sd = sd - timedelta(days=3)
> +        pd = sd - timedelta(days=2)
>          ed = sd + timedelta(days=22)
>  
>          print('')
>          print('cycle: %s through %s' % (sd.strftime('%d-%b'), ed.strftime('%d-%b')))
>          print('====================================================================')
> -        print('         %s   Last day for kernel commits for this cycle.' % (sd.strftime('%d-%b')))
> +        print('         %s   Last day for kernel commits for this cycle.' % (pd.strftime('%d-%b')))
>          print('%s - %s   Kernel prep week.' %
>                  ((sd + timedelta(days=3)).strftime('%d-%b'), (sd + timedelta(days=8)).strftime('%d-%b')))
>          print('%s - %s   Bug verification & Regression testing.' %
> 


Applied to kteam-tools/master branch.

Thanks,
Kleber
diff mbox series

Patch

diff --git a/stable/gen-sru-announce b/stable/gen-sru-announce
index 05fc7ab..5fd9143 100755
--- a/stable/gen-sru-announce
+++ b/stable/gen-sru-announce
@@ -42,12 +42,13 @@  class TheApp(object):
     #
     def print_cycle(s, sd):
         sd = sd - timedelta(days=3)
+        pd = sd - timedelta(days=2)
         ed = sd + timedelta(days=22)
 
         print('')
         print('cycle: %s through %s' % (sd.strftime('%d-%b'), ed.strftime('%d-%b')))
         print('====================================================================')
-        print('         %s   Last day for kernel commits for this cycle.' % (sd.strftime('%d-%b')))
+        print('         %s   Last day for kernel commits for this cycle.' % (pd.strftime('%d-%b')))
         print('%s - %s   Kernel prep week.' %
                 ((sd + timedelta(days=3)).strftime('%d-%b'), (sd + timedelta(days=8)).strftime('%d-%b')))
         print('%s - %s   Bug verification & Regression testing.' %