------------------------------------------------------------ revno: 17 committer: Fredrik Ullner <ull...@gmail.com> branch nick: dc-plugin-sdk timestamp: Mon 2014-05-19 23:12:56 +0200 message: Minor bug fixes for the Python plugin modified: Libraries/PyPlugin.DataTypes/DataTypes.py Libraries/PythonPlugin/Marshalling.cpp
-- lp:dc-plugin-sdk https://code.launchpad.net/~dcplusplus-team/dc-plugin-sdk/trunk Your team Dcplusplus-team is subscribed to branch lp:dc-plugin-sdk. To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dc-plugin-sdk/trunk/+edit-subscription
=== modified file 'Libraries/PyPlugin.DataTypes/DataTypes.py' --- Libraries/PyPlugin.DataTypes/DataTypes.py 2014-05-19 21:11:16 +0000 +++ Libraries/PyPlugin.DataTypes/DataTypes.py 2014-05-19 21:12:56 +0000 @@ -31,7 +31,7 @@ self.isSecure = paramIsSecure; class PluginInformation: - def __init__(self, paramName, paramDescription, paramAuthor, paramWeb, paramVersion, paramAPIVersion, paramUUID, paramSettings): + def __init__(self, paramName, paramDescription, paramAuthor, paramWeb, paramVersion, paramAPIVersion, paramUUID): self.name = paramName; self.description = paramDescription; self.author = paramAuthor; @@ -39,7 +39,7 @@ self.version = paramVersion; self.apiversion = paramAPIVersion; self.uuid = paramUUID; - self.settings = paramSetting; + """ self.settings = paramSetting; """ class QueueData: def __init__(self, paramTarget, paramLocation, paramHash, paramFilesize, paramIsfilelist): === modified file 'Libraries/PythonPlugin/Marshalling.cpp' --- Libraries/PythonPlugin/Marshalling.cpp 2014-05-19 21:11:16 +0000 +++ Libraries/PythonPlugin/Marshalling.cpp 2014-05-19 21:12:56 +0000 @@ -6,8 +6,7 @@ #include <iostream> -// todo: Change this to "DataTypes" once completed -const std::string DATATYPES_BINARY = "multiply"; +const std::string DATATYPES_BINARY = "DataTypes"; PyObject* CMarshalling::GetStringValue(const std::string& strValue) {
_______________________________________________ Mailing list: https://launchpad.net/~linuxdcpp-team Post to : linuxdcpp-team@lists.launchpad.net Unsubscribe : https://launchpad.net/~linuxdcpp-team More help : https://help.launchpad.net/ListHelp