Fix python plugin bug introduced in d7399204

This commit is contained in:
bao-qian 2016-06-22 00:00:53 +01:00
parent 4f8dee8fcf
commit 4b31f40026

View File

@ -100,6 +100,11 @@ namespace Wox.Core.Plugin
/// </summary>
public class JsonRPCServerRequestModel : JsonRPCRequestModel
{
public override string ToString()
{
string rpc = base.ToString();
return rpc + "}";
}
}
/// <summary>