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 ...@@ -100,9 +100,9 @@ if sale_order.getSimulationState() == \'ordered\':\n
except ValueError:\n except ValueError:\n
# It was not possible to find free Computer Partition\n # It was not possible to find free Computer Partition\n
markHistory(sale_order, \'Not confirmed: no 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 # 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 else:\n
if computer_partition is not None:\n if computer_partition is not None:\n
try:\n try:\n
......
772 773
\ No newline at end of file \ 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