public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
* Error in ' list-networks-by-cc'
@ 2021-04-01 11:36 Gisle Vanem
  2021-04-01 12:33 ` Michael Tremer
  0 siblings, 1 reply; 2+ messages in thread
From: Gisle Vanem @ 2021-04-01 11:36 UTC (permalink / raw)
  To: location

[-- Attachment #1: Type: text/plain, Size: 631 bytes --]

When issuing:
  location.py list-networks-by-cc XX

I get this error:
   for n in db.search_networks(country_code=country_code, family=ns.family):
   TypeError: 'country_code' is an invalid keyword argument for this function

But this works better:
@@ -506,7 +506,7 @@
      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.upper()], family=ns.family):
        f.write(n)

---

with the added bonus that I can do 'no' or 'NO'.

-- 
--gv

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-04-01 12:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-01 11:36 Error in ' list-networks-by-cc' Gisle Vanem
2021-04-01 12:33 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox