forked from frappe/bench
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There was this bug that said `bench.utils.bench` doesn't have attribute VERSION or whatever bench/__init__ was supposed to have. Now bench/utils/__init__ had an `import bench` statement that was supposed to ask for the top level module...but conflicted with the utils.bench namespace. Changed the line in utils to `from bench import PROJECT_NAME, VERSION` and it just works now...oh well Other changes made were an attempt to cleanup and simplify the multi level dotted path calls
- Loading branch information
1 parent
b2e0fd1
commit e2fd9de
Showing
3 changed files
with
39 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters