Commit 3f85e32f authored by Łukasz Nowak's avatar Łukasz Nowak

Expose more information.

parent 1a0cbcf6
......@@ -100,9 +100,9 @@ if sale_order.getSimulationState() == \'ordered\':\n
except ValueError:\n
# It was not possible to find free Computer Partition\n
markHistory(sale_order, \'Not confirmed: no free Computer Partition\')\n
except Unauthorized:\n
except Unauthorized, e:\n
# user has bad balance\n
markHistory(sale_order, \'Not confirmed: user has bad balance\')\n
markHistory(sale_order, \'Not confirmed: %s\' % e)\n
else:\n
if computer_partition is not None:\n
try:\n
......
772
\ No newline at end of file
773
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment