aboutsummaryrefslogtreecommitdiff
path: root/search.py
diff options
context:
space:
mode:
Diffstat (limited to 'search.py')
-rw-r--r--search.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/search.py b/search.py
index 403a5fa..6593a86 100644
--- a/search.py
+++ b/search.py
@@ -34,9 +34,9 @@ def search_log(query):
if __name__ == "__main__":
"""
Entry point for the script. Parses command line arguments and calls the search function.
- Usage: search_crumb.py <search term>
+ Usage: search.py <search term>
"""
if len(sys.argv) < 2:
- print("Usage: search_crumb.py <search term>")
+ print("Usage: search.py <search term>")
else:
search_log(sys.argv[1])