nicfit / eyeD3

eyeD3 is a Python module and command line program for processing ID3 tags. Information about mp3 files (i.e bit rate, sample frequency, play time, etc.) is also provided. The formats supported are ID3v1 (1.0/1.1) and ID3v2 (2.3/2.4).
http://eyed3.nicfit.net/
GNU General Public License v3.0
547 stars 59 forks source link

missing () in code #583

Closed miba2020 closed 2 years ago

miba2020 commented 2 years ago

tag_found and self.isV2 -> tag_found and self.isV2()

eyed3/id3/tag.py
@@ -103,7 +103,7 @@
                 if tag_found:
                     self.extended_header = None

-            if tag_found and self.isV2:
+            if tag_found and self.isV2():
                 self.file_info.tag_size = (TagHeader.SIZE +
                                            self.header.tag_size)
             if tag_found:
nicfit commented 2 years ago

Thanks @miba2020 , this has been fixed.