/release/scripts: Removed final points in UI strings and messages.

This commit is contained in:
Bastien Montagne
2011-09-19 14:00:42 +00:00
parent 1794767171
commit 712e434a5f
16 changed files with 38 additions and 38 deletions

View File

@@ -233,8 +233,8 @@ def axis_conversion(from_forward='Y', from_up='Z', to_forward='Y', to_up='Z'):
return Matrix().to_3x3()
if from_forward[-1] == from_up[-1] or to_forward[-1] == to_up[-1]:
raise Exception("invalid axis arguments passed, "
"can't use up/forward on the same axis.")
raise Exception("Invalid axis arguments passed, "
"can't use up/forward on the same axis")
value = reduce(int.__or__, (_axis_convert_num[a] << (i * 3)
for i, a in enumerate((from_forward,