summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 967a0fd)
raw | patch | inline | side by side (parent: 967a0fd)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Fri, 23 Apr 2010 07:44:44 +0000 (09:44 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Fri, 23 Apr 2010 07:44:44 +0000 (09:44 +0200) |
src/python.c | patch | blob | history |
diff --git a/src/python.c b/src/python.c
index 4d44977fc22280bf0f4bf039b6b0115eefc0c60e..00516fb24180c40a99b1cb924c4fb4a7291631f2 100644 (file)
--- a/src/python.c
+++ b/src/python.c
@@ -419,10 +419,9 @@ static int cpy_write_callback(const data_set_t *ds, const value_list_t *value_li
if (meta_data_get_boolean(meta, table[i], &b))
continue;
if (b)
- temp = Py_True;
+ PyDict_SetItemString(dict, table[i], Py_True);
else
- temp = Py_False;
- PyDict_SetItemString(dict, table[i], temp);
+ PyDict_SetItemString(dict, table[i], Py_False);
}
free(table[i]);
}