Skip to content
This repository was archived by the owner on Jun 1, 2022. It is now read-only.

Commit c402d29

Browse files
committed
Fixed org_by_name description
1 parent b6dac12 commit c402d29

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## 1.3.x (2014-XX-XX)
4+
5+
* The description for `org_by_name` incorrectly directed people to use
6+
`name_by_addr` rather than `name_by_name`.
7+
38
## 1.3.1 (2014-03-21)
49

510
* Fix for broken strings in Python 3. Strings with non-ASCII characters

py_GeoIP.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ static PyMethodDef GeoIP_GeoIP_methods[] = {
603603
{ "org_by_addr", GeoIP_name_by_addr_Py, METH_VARARGS,
604604
"Lookup ASN, Domain, ISP and Organisation By IP Address ( deprecated use name_by_addr instead )" },
605605
{ "org_by_name", GeoIP_name_by_name_Py, METH_VARARGS,
606-
"Lookup ASN, Domain, ISP and Organisation By Name ( deprecated use name_by_addr instead )" },
606+
"Lookup ASN, Domain, ISP and Organisation By Name ( deprecated use name_by_name instead )" },
607607
{ "region_by_addr", GeoIP_region_by_addr_Py, METH_VARARGS,
608608
"Lookup Region By IP Address" },
609609
{ "region_by_name", GeoIP_region_by_name_Py, METH_VARARGS,

0 commit comments

Comments
 (0)