From be774db7ad0ed42c0e588519b88a662d0dd8e80b Mon Sep 17 00:00:00 2001 From: Brian Thorne Date: Fri, 18 Nov 2022 19:34:07 +1300 Subject: [PATCH] 4.1.0-a2 version bump --- can/__init__.py | 2 +- can/logger.py | 15 --------------- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/can/__init__.py b/can/__init__.py index 2398f4fdc..edaf7278b 100644 --- a/can/__init__.py +++ b/can/__init__.py @@ -8,7 +8,7 @@ import logging from typing import Dict, Any -__version__ = "4.1.0a1" +__version__ = "4.1.0a2" log = logging.getLogger("can") diff --git a/can/logger.py b/can/logger.py index 8cb201987..f13b78bfc 100644 --- a/can/logger.py +++ b/can/logger.py @@ -1,18 +1,3 @@ -""" -logger.py logs CAN traffic to the terminal and to a file on disk. - - logger.py can0 - -See candump in the can-utils package for a C implementation. -Efficient filtering has been implemented for the socketcan backend. -For example the command - - logger.py can0 F03000:FFF000 - -Will filter for can frames with a can_id containing XXF03XXX. - -Dynamic Controls 2010 -""" import re import sys import argparse