* [PATCH] location.in: fix search_networks() function call
@ 2021-05-16 20:35 Peter Müller
2021-05-18 10:31 ` Michael Tremer
0 siblings, 1 reply; 4+ messages in thread
From: Peter Müller @ 2021-05-16 20:35 UTC (permalink / raw)
To: location
[-- Attachment #1: Type: text/plain, Size: 653 bytes --]
Fixes: #12617
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
src/python/location.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/python/location.in b/src/python/location.in
index ad2ccf5..e02b4e8 100644
--- a/src/python/location.in
+++ b/src/python/location.in
@@ -506,7 +506,7 @@ class CLI(object):
f = writer(sys.stdout, prefix=country_code)
# Print all matching networks
- for n in db.search_networks(country_code=country_code, family=ns.family):
+ for n in db.search_networks(country_codes=[country_code], family=ns.family):
f.write(n)
f.finish()
--
2.26.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] location.in: fix search_networks() function call
2021-05-16 20:35 [PATCH] location.in: fix search_networks() function call Peter Müller
@ 2021-05-18 10:31 ` Michael Tremer
2021-05-18 11:04 ` Gisle Vanem
0 siblings, 1 reply; 4+ messages in thread
From: Michael Tremer @ 2021-05-18 10:31 UTC (permalink / raw)
To: location
[-- Attachment #1: Type: text/plain, Size: 793 bytes --]
Thanks. Merged.
> On 16 May 2021, at 21:35, Peter Müller <peter.mueller(a)ipfire.org> wrote:
>
> Fixes: #12617
>
> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
> ---
> src/python/location.in | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/python/location.in b/src/python/location.in
> index ad2ccf5..e02b4e8 100644
> --- a/src/python/location.in
> +++ b/src/python/location.in
> @@ -506,7 +506,7 @@ class CLI(object):
> f = writer(sys.stdout, prefix=country_code)
>
> # Print all matching networks
> - for n in db.search_networks(country_code=country_code, family=ns.family):
> + for n in db.search_networks(country_codes=[country_code], family=ns.family):
> f.write(n)
>
> f.finish()
> --
> 2.26.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] location.in: fix search_networks() function call
2021-05-18 10:31 ` Michael Tremer
@ 2021-05-18 11:04 ` Gisle Vanem
2021-05-18 11:06 ` Michael Tremer
0 siblings, 1 reply; 4+ messages in thread
From: Gisle Vanem @ 2021-05-18 11:04 UTC (permalink / raw)
To: location
[-- Attachment #1: Type: text/plain, Size: 929 bytes --]
Michael Tremer wrote:
> Thanks. Merged.
>
>> On 16 May 2021, at 21:35, Peter Müller <peter.mueller(a)ipfire.org> wrote:
>>
>> Fixes: #12617
>>
>> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
>> ---
>> src/python/location.in | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/src/python/location.in b/src/python/location.in
>> index ad2ccf5..e02b4e8 100644
>> --- a/src/python/location.in
>> +++ b/src/python/location.in
>> @@ -506,7 +506,7 @@ class CLI(object):
>> f = writer(sys.stdout, prefix=country_code)
>>
>> # Print all matching networks
>> - for n in db.search_networks(country_code=country_code, family=ns.family):
>> + for n in db.search_networks(country_codes=[country_code], family=ns.family):
>> f.write(n)
High time. I reported this already 1 April:
https://lists.ipfire.org/pipermail/location/2021-April/000263.html
--
--gv
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] location.in: fix search_networks() function call
2021-05-18 11:04 ` Gisle Vanem
@ 2021-05-18 11:06 ` Michael Tremer
0 siblings, 0 replies; 4+ messages in thread
From: Michael Tremer @ 2021-05-18 11:06 UTC (permalink / raw)
To: location
[-- Attachment #1: Type: text/plain, Size: 1266 bytes --]
Hello,
Thank you for that. It would be even better if you would follow the guidelines here, so that the patch can be merged into the repository easily: https://wiki.ipfire.org/devel/submit-patches
Best,
-Michael
> On 18 May 2021, at 12:04, Gisle Vanem <gisle.vanem(a)gmail.com> wrote:
>
> Michael Tremer wrote:
>
>> Thanks. Merged.
>>> On 16 May 2021, at 21:35, Peter Müller <peter.mueller(a)ipfire.org> wrote:
>>>
>>> Fixes: #12617
>>>
>>> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
>>> ---
>>> src/python/location.in | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/src/python/location.in b/src/python/location.in
>>> index ad2ccf5..e02b4e8 100644
>>> --- a/src/python/location.in
>>> +++ b/src/python/location.in
>>> @@ -506,7 +506,7 @@ class CLI(object):
>>> f = writer(sys.stdout, prefix=country_code)
>>>
>>> # Print all matching networks
>>> - for n in db.search_networks(country_code=country_code, family=ns.family):
>>> + for n in db.search_networks(country_codes=[country_code], family=ns.family):
>>> f.write(n)
>
> High time. I reported this already 1 April:
> https://lists.ipfire.org/pipermail/location/2021-April/000263.html
>
> --
> --gv
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-05-18 11:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-16 20:35 [PATCH] location.in: fix search_networks() function call Peter Müller
2021-05-18 10:31 ` Michael Tremer
2021-05-18 11:04 ` Gisle Vanem
2021-05-18 11:06 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox