Fix program name

This commit is contained in:
Augusto Gunsch 2021-11-14 20:39:01 -03:00
parent cf9cf79da2
commit 84192b0604
No known key found for this signature in database
GPG Key ID: F7EEFE29825C72DC
3 changed files with 3 additions and 2 deletions

View File

@ -9,7 +9,7 @@ pip install fsub
# Usage
```
usage: fsub.py [-h] [-c] [-s MS] [-n] [-f FILE] file [file ...]
usage: fsub [-h] [-c] [-s MS] [-n] [-f FILE] file [file ...]
Fix, edit and clean SubRip (.srt) files.

View File

@ -1,6 +1,6 @@
[metadata]
name = fsub
version = 0.1.0
version = 0.1.1
author = Augusto Lenz Gunsch
author_email = augustogunsch@tutanota.com
description = CLI SubRip editor

View File

@ -211,6 +211,7 @@ def read_expressions(args):
def main():
parser = argparse.ArgumentParser(
prog='fsub',
description='Fix, edit and clean SubRip (.srt) files.',
add_help=True
)