diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2012-05-18 18:04:11 +0300 |
---|---|---|
committer | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2014-06-09 12:26:41 +0300 |
commit | f45567c2da6abb4562d42907bf9f614174baa3ff (patch) | |
tree | 5f444815ae1ed47cfa614596c716a9baccfe3a68 /python/rpmfd-py.c | |
parent | 987bd509c0686535e6fd80e813b22746e53abfa8 (diff) | |
download | librpm-tizen-f45567c2da6abb4562d42907bf9f614174baa3ff.tar.gz librpm-tizen-f45567c2da6abb4562d42907bf9f614174baa3ff.tar.bz2 librpm-tizen-f45567c2da6abb4562d42907bf9f614174baa3ff.zip |
Make python module name configurable
Diffstat (limited to 'python/rpmfd-py.c')
-rw-r--r-- | python/rpmfd-py.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/rpmfd-py.c b/python/rpmfd-py.c index a266ad686..79eb5b6ee 100644 --- a/python/rpmfd-py.c +++ b/python/rpmfd-py.c @@ -310,7 +310,7 @@ static PyGetSetDef rpmfd_getseters[] = { PyTypeObject rpmfd_Type = { PyVarObject_HEAD_INIT(&PyType_Type, 0) - "rpm.fd", /* tp_name */ + PYTHON_MODULENAME".fd", /* tp_name */ sizeof(rpmfdObject), /* tp_size */ 0, /* tp_itemsize */ /* methods */ |