Skip to content

Commit 45c8453

Browse files
committed
Fix grammar in error message
1 parent 88635c1 commit 45c8453

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webware/PlugInLoader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def loadPlugIns(self, plugInNames=None, verbose=None):
5757
entry_point = entryPoints.get(name)
5858
if not entry_point:
5959
if verbose:
60-
print(f'Plug-in {name} has not entry point.')
60+
print(f'Plug-in {name} has no entry point.')
6161
continue
6262
module = entry_point.load()
6363
plugIn = self.loadPlugIn(name, module, verbose=verbose)

0 commit comments

Comments
 (0)