Fix program name
This commit is contained in:
parent
cf9cf79da2
commit
84192b0604
|
@ -9,7 +9,7 @@ pip install fsub
|
||||||
|
|
||||||
# Usage
|
# 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.
|
Fix, edit and clean SubRip (.srt) files.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = fsub
|
name = fsub
|
||||||
version = 0.1.0
|
version = 0.1.1
|
||||||
author = Augusto Lenz Gunsch
|
author = Augusto Lenz Gunsch
|
||||||
author_email = augustogunsch@tutanota.com
|
author_email = augustogunsch@tutanota.com
|
||||||
description = CLI SubRip editor
|
description = CLI SubRip editor
|
||||||
|
|
|
@ -211,6 +211,7 @@ def read_expressions(args):
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
|
prog='fsub',
|
||||||
description='Fix, edit and clean SubRip (.srt) files.',
|
description='Fix, edit and clean SubRip (.srt) files.',
|
||||||
add_help=True
|
add_help=True
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue