Skip to content
Snippets Groups Projects
Commit f56dd756 authored by inso's avatar inso
Browse files

Disable output capturing

parent c792480c
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ if [ $TRAVIS_OS_NAME == "linux" ] ...@@ -22,7 +22,7 @@ if [ $TRAVIS_OS_NAME == "linux" ]
then then
py.test --cov=sakia tests/ py.test --cov=sakia tests/
else else
py.test py.test -s
fi fi
...@@ -141,6 +141,8 @@ class TransferController(QObject): ...@@ -141,6 +141,8 @@ class TransferController(QObject):
amount = self.view.spinbox_amount.value() * 100 amount = self.view.spinbox_amount.value() * 100
#TODO: Handle other amount base than 0 #TODO: Handle other amount base than 0
amount_base = self.model.current_base() amount_base = self.model.current_base()
if amount_base <= 1:
amount_base = 0
logging.debug("Showing password dialog...") logging.debug("Showing password dialog...")
secret_key, password = self.password_input.get_salt_password() secret_key, password = self.password_input.get_salt_password()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment