Browse Source

tx.new_swap: whitespace

The MMGen Project 1 week ago
parent
commit
2807c30a60
1 changed files with 7 additions and 2 deletions
  1. 7 2
      mmgen/tx/new_swap.py

+ 7 - 2
mmgen/tx/new_swap.py

@@ -125,13 +125,18 @@ class NewSwap(New):
 				chg_output,
 				message = 'Change address is not an MMGen wallet address!')
 
-		recv_output = await self.get_swap_output(self.recv_proto, args.recv_spec, addrfiles, 'destination address')
+		recv_output = await self.get_swap_output(
+			self.recv_proto,
+			args.recv_spec,
+			addrfiles,
+			'destination address')
 
 		self.check_addr_is_wallet_addr(
 			recv_output,
 			message = (
 				'Swap destination address is not an MMGen wallet address!\n'
-				'To sign this transaction, autosign or txsign must be invoked with --allow-non-wallet-swap'))
+				'To sign this transaction, autosign or txsign must be invoked'
+				' with --allow-non-wallet-swap'))
 
 		memo = sp.data(self.recv_proto, recv_output.addr)