Skip to content

Commit

Permalink
Warning --> Info if module doesn't modify (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdfarrow committed Jan 30, 2023
1 parent e858144 commit 4c4d3b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flextoolslib/code/FTModuleClass.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def Run(self, project, report, modifyAllowed = False):
if self.runFunction:
# Prevent writes if not documented
if modifyAllowed and not self.docs[FTM_ModifiesDB]:
report.Warning("Changes are enabled, but this module doesn't allow it. Disabling changes.")
report.Info("(Modifications are allowed, but this module doesn't modify the project.)")
modifyAllowed = False
self.runFunction(project, report, modifyAllowed)

Expand Down

0 comments on commit 4c4d3b6

Please sign in to comment.