Message ID | 20181004161852.11673-9-crosa@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Trivial fixes and clean ups | expand |
On 04/10/2018 18:18, Cleber Rosa wrote: > Signed-off-by: Cleber Rosa <crosa@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> > --- > scripts/decodetree.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/decodetree.py b/scripts/decodetree.py > index 457cffea90..37c76b5507 100755 > --- a/scripts/decodetree.py > +++ b/scripts/decodetree.py > @@ -298,7 +298,7 @@ class Field: > s = 's' > else: > s = '' > - return str(pos) + ':' + s + str(len) > + return str(self.pos) + ':' + s + str(self.len) > > def str_extract(self): > if self.sign: >
diff --git a/scripts/decodetree.py b/scripts/decodetree.py index 457cffea90..37c76b5507 100755 --- a/scripts/decodetree.py +++ b/scripts/decodetree.py @@ -298,7 +298,7 @@ class Field: s = 's' else: s = '' - return str(pos) + ':' + s + str(len) + return str(self.pos) + ':' + s + str(self.len) def str_extract(self): if self.sign:
Signed-off-by: Cleber Rosa <crosa@redhat.com> --- scripts/decodetree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)