diff options
| author | Ales Ledvinka <aledvink@redhat.com> | 2014-04-11 14:20:00 +0200 |
|---|---|---|
| committer | Ales Ledvinka <aledvink@redhat.com> | 2014-04-11 14:20:00 +0200 |
| commit | e83d5dc50a95980e5f0085e931078ecf448f91eb (patch) | |
| tree | ebacaf09b64c378da9cf42b32237179ca0147dac /src/python/lmi | |
| parent | bbf83307946d07c7189ba7bfe90b56797c11ef39 (diff) | |
| download | openlmi-providers-e83d5dc50a95980e5f0085e931078ecf448f91eb.tar.gz openlmi-providers-e83d5dc50a95980e5f0085e931078ecf448f91eb.tar.xz openlmi-providers-e83d5dc50a95980e5f0085e931078ecf448f91eb.zip | |
python2.6 software provider
Diffstat (limited to 'src/python/lmi')
| -rw-r--r-- | src/python/lmi/test/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/lmi/test/util.py b/src/python/lmi/test/util.py index 615a81e..40459ff 100644 --- a/src/python/lmi/test/util.py +++ b/src/python/lmi/test/util.py @@ -94,7 +94,7 @@ def check_inames_equal(fst, snd): if fst.classname != snd.classname or fst.namespace != snd.namespace: return False - snd_keys = { k: v for k, v in snd.keybindings.iteritems() } + snd_keys = dict((k, v) for (k, v) in snd.keybindings.iteritems()) for key, value in fst.keybindings.iteritems(): if key not in snd_keys: return False |
