From becb96f7a3e87365f6be1725724ef201b030a063 Mon Sep 17 00:00:00 2001 From: Christian Herdtweck Date: Fri, 8 Dec 2017 17:54:18 +0100 Subject: [PATCH] xls_parser: fix "wrong" variable name --- oletools/xls_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oletools/xls_parser.py b/oletools/xls_parser.py index 06ee90d..790af87 100644 --- a/oletools/xls_parser.py +++ b/oletools/xls_parser.py @@ -118,7 +118,7 @@ class XlsFile(OleRecordFile): """ An xls file has most streams made up of records """ @classmethod - def stream_class_for_name(self, stream_name): + def stream_class_for_name(cls, stream_name): """ helper for iter_streams """ return XlsStream -- libgit2 0.21.4