Skip to content

Commit e0c3c72

Browse files
authored
Merge pull request #445 from hardbyte/develop
Add last minute changes release
2 parents 951568c + 97339eb commit e0c3c72

3 files changed

Lines changed: 1 addition & 5 deletions

File tree

can/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# coding: utf-8
32

43
"""

can/message.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,6 @@ def __init__(self, timestamp=0.0, arbitration_id=0, is_extended_id=None,
103103
if is_extended_id is not None:
104104
self.is_extended_id = is_extended_id
105105
else:
106-
if not extended_id:
107-
# Passed extended_id=False (default argument is True) so we warn to update
108-
warnings.warn("extended_id is a deprecated parameter, use is_extended_id", DeprecationWarning)
109106
self.is_extended_id = extended_id
110107

111108
self.is_remote_frame = is_remote_frame

doc/scripts.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ can.viewer
2525

2626
A screenshot of the application can be seen below:
2727

28-
.. image:: ../images/viewer.png
28+
.. image:: images/viewer.png
2929
:width: 100%
3030

3131
The first column is the number of times a frame with the particular ID that has been received, next is the timestamp of the frame relative to the first received message. The third column is the time between the current frame relative to the previous one. Next is the length of the frame, the data and then the decoded data converted according to the ``-d`` argument. The top red row indicates an error frame.

0 commit comments

Comments
 (0)