From: Jack Jansen Date: Wed, 22 Jul 1998 13:35:31 +0000 (+0000) Subject: Remove the MOOV filetype from the StandardGetFile call, so we can also X-Git-Tag: v1.5.2a1~275 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2116bcaec06230d571e8cdc7c9564fdeba65c03d;p=thirdparty%2FPython%2Fcpython.git Remove the MOOV filetype from the StandardGetFile call, so we can also open MPEG files, etc. --- diff --git a/Mac/Demo/quicktime/MovieInWindow.py b/Mac/Demo/quicktime/MovieInWindow.py index ef767a555311..af9c7d7d88a9 100644 --- a/Mac/Demo/quicktime/MovieInWindow.py +++ b/Mac/Demo/quicktime/MovieInWindow.py @@ -21,7 +21,7 @@ def main(): Qt.EnterMovies() # Get the movie file - fss, ok = macfs.StandardGetFile(QuickTime.MovieFileType) + fss, ok = macfs.StandardGetFile() # Was: QuickTime.MovieFileType if not ok: sys.exit(0)