diff mbox series

[cip-kernel-sec,v2,1/3] branch: fix remotes mapping

Message ID 20190620055143.341-1-daniel.sangorrin@toshiba.co.jp (mailing list archive)
State Accepted
Headers show
Series [cip-kernel-sec,v2,1/3] branch: fix remotes mapping | expand

Commit Message

Daniel Sangorrin June 20, 2019, 5:51 a.m. UTC
Probably a copy&paste error that never got checked because
nobody is using the mapping functionality.

Signed-off-by: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
---
 scripts/kernel_sec/branch.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Ben Hutchings June 20, 2019, 6:08 p.m. UTC | #1
I've applied this and the following patch, as they're obviously
correct.

Ben.

On Thu, 2019-06-20 at 14:51 +0900, Daniel Sangorrin wrote:
> Probably a copy&paste error that never got checked because
> nobody is using the mapping functionality.
> 
> Signed-off-by: Daniel Sangorrin <daniel.sangorrin@toshiba.co.jp>
> ---
>  scripts/kernel_sec/branch.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/scripts/kernel_sec/branch.py
> b/scripts/kernel_sec/branch.py
> index 3ede64a..10f3339 100644
> --- a/scripts/kernel_sec/branch.py
> +++ b/scripts/kernel_sec/branch.py
> @@ -212,7 +212,7 @@ def get_remotes(mappings, mainline=None,
> stable=None):
>          _get_configured_remotes(
>              os.path.expanduser('~/.config/kernel-sec/remotes.yml')))
>      for mapping in mappings:
> -        left, right = arg.split(':', 1)
> +        left, right = mapping.split(':', 1)
>          remotes[left]['git_name'] = right
>      if mainline:
>          remotes['torvalds']['git_name'] = mainline
diff mbox series

Patch

diff --git a/scripts/kernel_sec/branch.py b/scripts/kernel_sec/branch.py
index 3ede64a..10f3339 100644
--- a/scripts/kernel_sec/branch.py
+++ b/scripts/kernel_sec/branch.py
@@ -212,7 +212,7 @@  def get_remotes(mappings, mainline=None, stable=None):
         _get_configured_remotes(
             os.path.expanduser('~/.config/kernel-sec/remotes.yml')))
     for mapping in mappings:
-        left, right = arg.split(':', 1)
+        left, right = mapping.split(':', 1)
         remotes[left]['git_name'] = right
     if mainline:
         remotes['torvalds']['git_name'] = mainline