diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2020-04-30 16:08:08 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-04-30 16:08:08 +0200 |
commit | 5a6ecfff51e82981e0a4a1429a9ce977600dae82 (patch) | |
tree | 155a089efbd53e1cbc7e6613c14126848079c42c | |
parent | d20a07aa5e7f56188c680cc32fc88f01ad551e67 (diff) |
dfatool: Fix Code128 import
-rw-r--r-- | lib/dfatool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dfatool.py b/lib/dfatool.py index b41d399..177bd7b 100644 --- a/lib/dfatool.py +++ b/lib/dfatool.py @@ -19,7 +19,7 @@ from .utils import vprint, is_numeric, soft_cast_int, param_slice_eq, remove_ind from .utils import by_name_to_by_param, match_parameter_values, running_mean try: - from pubcode import Code128 + from .pubcode import Code128 import zbar zbar_available = True except ImportError: |