diff options
Diffstat (limited to 'python/guestfs-py.c')
-rw-r--r-- | python/guestfs-py.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/python/guestfs-py.c b/python/guestfs-py.c index c8df178d..09d42707 100644 --- a/python/guestfs-py.c +++ b/python/guestfs-py.c @@ -103,7 +103,6 @@ put_table (char * const * const argv) list = PyList_New (argc >> 1); for (i = 0; i < argc; i += 2) { - PyObject *item; item = PyTuple_New (2); PyTuple_SetItem (item, 0, PyString_FromString (argv[i])); PyTuple_SetItem (item, 1, PyString_FromString (argv[i+1])); |