zturner added inline comments. ================ Comment at: packages/Python/lldbsuite/test/decorators.py:170-171 @@ -169,2 +169,4 @@ reason_str = "{} unconditionally" + if bugnumber is not None: + reason_str = reason_str + " [" + bugnumber + "]" return reason_str ---------------- Can you try changing this to this and see what happens:
if bugnumber is not None and not six.callable(bugnumber): reason_str = reason_str + " [" + str(bugnumber) + "]" http://reviews.llvm.org/D16936 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits