diff options
Diffstat (limited to 'decoders/mlx90614')
-rw-r--r-- | decoders/mlx90614/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/mlx90614/pd.py b/decoders/mlx90614/pd.py index 1ee88d7..329f2b6 100644 --- a/decoders/mlx90614/pd.py +++ b/decoders/mlx90614/pd.py @@ -83,5 +83,5 @@ class Decoder(srd.Decoder): self.state = 'IGNORE START REPEAT' self.data = [] else: - raise Exception('Invalid state: %d' % self.state) + raise Exception('Invalid state: %s' % self.state) |