commit 36f341f7c882d846b1305beb1a29906a2b97d590 Author: Dave Rolek dmr-x@riseup.net Date: Sat Aug 11 19:18:09 2018 +0000
Fix docstring 'import path' for RelayCommand --- stem/client/__init__.py | 2 +- stem/client/cell.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/stem/client/__init__.py b/stem/client/__init__.py index 83c20365..b0500c4a 100644 --- a/stem/client/__init__.py +++ b/stem/client/__init__.py @@ -227,7 +227,7 @@ class Circuit(object): """ Sends a message over the circuit.
- :param stem.client.RelayCommand command: command to be issued + :param stem.client.datatype.RelayCommand command: command to be issued :param bytes data: message payload :param int stream_id: specific stream this concerns
diff --git a/stem/client/cell.py b/stem/client/cell.py index 42b95571..381a7387 100644 --- a/stem/client/cell.py +++ b/stem/client/cell.py @@ -366,7 +366,7 @@ class RelayCell(CircuitCell): """ Command concerning a relay circuit.
- :var stem.client.RelayCommand command: command to be issued + :var stem.client.datatype.RelayCommand command: command to be issued :var int command_int: integer value of our command :var bytes data: payload of the cell :var int recognized: zero if cell is decrypted, otherwise mostly non-zero (can rarely be zero)