Skip to content

Commit

Permalink
Merge pull request #10 from someengineering/lloesche/typos
Browse files Browse the repository at this point in the history
Fix pg_dump typo
  • Loading branch information
lloesche authored Jul 17, 2024
2 parents 224aec0 + d1b38f8 commit d3220f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fixbackup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
__author__ = "Some Engineering Inc."
__license__ = "Apache 2.0"
__copyright__ = "Copyright © 2023 Some Engineering Inc."
__version__ = "0.0.9"
__version__ = "0.0.10"
2 changes: 1 addition & 1 deletion fixbackup/backup/postgresql.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def backup(args: Namespace, backup_file_path: Path, timeout: int = 900, compress
str(args.pg_host),
"-p",
str(args.pg_port),
"-u",
"-U",
str(args.pg_user),
*args.pg_dump_args,
]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "fixbackup"
version = "0.0.9"
version = "0.0.10"
authors = [{name="Some Engineering Inc."}]
description = "FIX Database Backup System"
license = {file="LICENSE"}
Expand Down

0 comments on commit d3220f2

Please sign in to comment.