Update the usage info that's printed when gtm is invoked without a filename

This commit is contained in:
n loewen 2025-05-05 11:14:54 +01:00
parent fe0a3d4122
commit b6ec090794
1 changed files with 1 additions and 1 deletions

2
gtm
View File

@ -220,7 +220,7 @@ def main(stdscr, filename):
if __name__ == "__main__":
if len(sys.argv) != 2:
print("Usage: python git_time_machine.py path/to/file")
print("Usage: gtm filename")
sys.exit(1)
filename = sys.argv[1]
curses.wrapper(main, filename)