Skip to content

Commit

Permalink
Hotfix log message
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailsimsek committed Nov 2, 2021
1 parent 12e0ba8 commit edad12b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyliquibase/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class LiquibaseCommandLine(JavaClass, metaclass=MetaJavaClass):
return LiquibaseCommandLine()

def execute(self, *arguments: str):
log.debug("Executing liquibase %s" % arguments)
log.debug("Executing liquibase %s" % list(arguments))
rc = self.cli.execute(self.args + list(arguments))
if rc:
raise Exception("Liquibase execution failed with exit code:%s" % rc)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
'pyliquibase = pyliquibase:main',
],
},
version='2.0.6',
version='2.0.7',
packages=find_packages(),
author="Memiiso Organization",
description='Python liquibase',
Expand Down

0 comments on commit edad12b

Please sign in to comment.