Skip to content

Commit

Permalink
pickle_ascii should be 1 if pickle version is 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Soeren Sonnenburg committed Jan 18, 2012
1 parent 299493d commit c9e6d08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interfaces/modular/SGBase.i
Expand Up @@ -291,7 +291,7 @@ namespace shogun

PyObject* __reduce_ex__(int proto)
{
pickle_ascii= (proto==0) ? 0 : 1;
pickle_ascii= (proto==0) ? 1 : 0;
return NULL;
}

Expand Down

0 comments on commit c9e6d08

Please sign in to comment.