diff options
author | Christian Cleberg <hello@cleberg.net> | 2025-06-04 13:53:37 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2025-06-04 13:53:37 -0500 |
commit | 8c8191065e23e2b94fa654962941c2fca3610acf (patch) | |
tree | 7cbde1966bdd2d8aff603cb0303c5296226964b6 | |
parent | 159f549b3e07c0b86ce0a41cae7abf2ca38efd71 (diff) | |
download | crumb-8c8191065e23e2b94fa654962941c2fca3610acf.tar.gz crumb-8c8191065e23e2b94fa654962941c2fca3610acf.tar.bz2 crumb-8c8191065e23e2b94fa654962941c2fca3610acf.zip |
fix: update mistyped comments
-rw-r--r-- | search.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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]) |