mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
32a8865a27
With Python 3.8 converting these directly to string using str() no longer works, we need to convert these to integer first. On Python 3.8: >>> str(dbus.Int64(1)) 'dbus.Int64(1)' On Python 3.7 (and older): >>> str(dbus.UInt64(1)) '1' This is probably related to removing __str__ function from method from int (dbus.UInt is subclass of int) which happened in 3.8, see https://docs.python.org/3.8/whatsnew/3.8.html Signed-off-by: Vojtech Trefny <vtrefny@redhat.com> |
||
---|---|---|
.. | ||
__init__.py | ||
.gitignore | ||
automatedproperties.py | ||
background.py | ||
cfg.py | ||
cmdhandler.py | ||
fetch.py | ||
job.py | ||
loader.py | ||
lv.py | ||
lvm_shell_proxy.py.in | ||
lvmdb.py.in | ||
lvmdbusd.in | ||
main.py | ||
Makefile.in | ||
manager.py | ||
objectmanager.py | ||
path.py.in | ||
pv.py | ||
request.py | ||
state.py | ||
udevwatch.py | ||
utils.py | ||
vg.py |