mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-16 12:05:53 +00:00
fix possible access to None value
This commit is contained in:
@ -84,6 +84,9 @@ def getNewestMigrationFile(app, exclude_extension=True):
|
||||
newest_num = num
|
||||
newest_file = f
|
||||
|
||||
if not newest_file: # pragma: no cover
|
||||
return newest_file
|
||||
|
||||
if exclude_extension:
|
||||
newest_file = newest_file.replace('.py', '')
|
||||
|
||||
|
Reference in New Issue
Block a user