~kivy-team/kivy/garden.filechooserthumbview

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Oliver
  • Date: 2020-12-24 02:54:55 UTC
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: git-v1:e56031f4f8b30336b3b1b6d7f82796a9252ac511
made except statments parethesiesed

Show diffs side-by-side

added added

removed removed

Lines of Context:
269
269
                art,
270
270
                flacPath
271
271
            )
272
 
        except IndexError, TypeError:
 
272
        except (IndexError, TypeError):
273
273
            return FILE_ICON
274
274
        except:
275
275
            return FILE_ICON
290
290
                art,
291
291
                mp3Path
292
292
            )
293
 
        except IndexError, TypeError:
 
293
        except (IndexError, TypeError):
294
294
            return FILE_ICON
295
295
        except:
296
296
            return FILE_ICON