Commit ad9b5f755c245c1b75df01ed2f4c5d7c64f8efff

Authored by decalage2
1 parent f2cbbbae

ftguess: fixed typo Pointpoint => Powerpoint

Showing 1 changed file with 8 additions and 8 deletions
oletools/ftguess.py
@@ -633,26 +633,26 @@ class FType_Powerpoint2007(FType_Powerpoint, FType_Generic_OpenXML): @@ -633,26 +633,26 @@ class FType_Powerpoint2007(FType_Powerpoint, FType_Generic_OpenXML):
633 633
634 class FType_Powerpoint2007_Presentation(FType_Powerpoint2007): 634 class FType_Powerpoint2007_Presentation(FType_Powerpoint2007):
635 filetype = FTYPE.POWERPOINT2007_PPTX 635 filetype = FTYPE.POWERPOINT2007_PPTX
636 - name = 'MSPointpoint 2007+ Presentation'  
637 - longname = 'MSPointpoint 2007+ Presentation (.pptx)' 636 + name = 'MSPowerpoint 2007+ Presentation'
  637 + longname = 'MSPowerpoint 2007+ Presentation (.pptx)'
638 extensions = ['pptx'] 638 extensions = ['pptx']
639 639
640 class FType_Powerpoint2007_Slideshow(FType_Powerpoint2007): 640 class FType_Powerpoint2007_Slideshow(FType_Powerpoint2007):
641 filetype = FTYPE.POWERPOINT2007_PPSX 641 filetype = FTYPE.POWERPOINT2007_PPSX
642 - name = 'MSPointpoint 2007+ Slideshow'  
643 - longname = 'MSPointpoint 2007+ Slideshow (.ppsx)' 642 + name = 'MSPowerpoint 2007+ Slideshow'
  643 + longname = 'MSPowerpoint 2007+ Slideshow (.ppsx)'
644 extensions = ['ppsx'] 644 extensions = ['ppsx']
645 645
646 class FType_Powerpoint2007_Macro(FType_Powerpoint2007): 646 class FType_Powerpoint2007_Macro(FType_Powerpoint2007):
647 filetype = FTYPE.POWERPOINT2007_PPTM 647 filetype = FTYPE.POWERPOINT2007_PPTM
648 - name = 'MSPointpoint 2007+ Macro-Enabled Presentation'  
649 - longname = 'MSPointpoint 2007+ Macro-Enabled Presentation (.pptm)' 648 + name = 'MSPowerpoint 2007+ Macro-Enabled Presentation'
  649 + longname = 'MSPowerpoint 2007+ Macro-Enabled Presentation (.pptm)'
650 extensions = ['pptm'] 650 extensions = ['pptm']
651 651
652 class FType_Powerpoint2007_Slideshow_Macro(FType_Powerpoint2007): 652 class FType_Powerpoint2007_Slideshow_Macro(FType_Powerpoint2007):
653 filetype = FTYPE.POWERPOINT2007_PPSM 653 filetype = FTYPE.POWERPOINT2007_PPSM
654 - name = 'MSPointpoint 2007+ Macro-Enabled Slideshow'  
655 - longname = 'MSPointpoint 2007+ Macro-Enabled Slideshow (.ppsm)' 654 + name = 'MSPowerpoint 2007+ Macro-Enabled Slideshow'
  655 + longname = 'MSPowerpoint 2007+ Macro-Enabled Slideshow (.ppsm)'
656 extensions = ['ppsm'] 656 extensions = ['ppsm']
657 657
658 658