Skip to main content

Deleted

This project has been deleted


Tom Maran
(tommy3244)

Changes

Links

Home Page
http://test.com

Releases

Pygame.org account Comments

  • josmiley 2011-06-15 17:02

    hi,

    Traceback (most recent call last):
      File "NewImageViewer.py", line 14, in <module>
        if imgn.endswith('bmp'):
    AttributeError: 'NoneType' object has no attribute 'endswith'

    may be add this:
    ...
    except:
        imgn = easygui.fileopenbox()
        if imgn:
            if imgn.endswith('bmp'):
                can1 = True
                ...