Skip to content

Commit 549473b

Browse files
committed
Remove reference to private method in Context.connect() docstring.
1 parent a549310 commit 549473b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

splunklib/binding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ def connect(self):
447447
import splunklib.binding as binding
448448
c = binding.connect(...)
449449
socket = c.connect()
450-
socket.write("POST %s HTTP/1.1\\r\\n" % c._abspath("some/path/to/post/to"))
450+
socket.write("POST %s HTTP/1.1\\r\\n" % "some/path/to/post/to")
451451
socket.write("Host: %s:%s\\r\\n" % (c.host, c.port))
452452
socket.write("Accept-Encoding: identity\\r\\n")
453453
socket.write("Authorization: %s\\r\\n" % c.token)

0 commit comments

Comments
 (0)