Skip to content

Commit

Permalink
fix: apps init; apps might be an empty folder still
Browse files Browse the repository at this point in the history
  • Loading branch information
blaggacao committed Nov 27, 2024
1 parent 9ea10b7 commit f643bff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench/bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def initialize_apps(self):
]
self.apps.remove("frappe")
self.apps.insert(0, "frappe")
except FileNotFoundError:
except (FileNotFoundError, ValueError):
self.apps = []

def __getitem__(self, key):
Expand Down

0 comments on commit f643bff

Please sign in to comment.