summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Kletzander <mkletzan@redhat.com>2013-06-12 10:49:30 +0200
committerMartin Kletzander <mkletzan@redhat.com>2013-06-12 10:49:30 +0200
commit1ca9d6ebd2195ebc9e495c2cae5be28aa11c62a8 (patch)
tree45ed9f399184fa9bd132b2841d81996a83dc4806
parentff297777cc271832df97e44ba8ad0073b59ee847 (diff)
downloadvirt-manager-1ca9d6ebd2195ebc9e495c2cae5be28aa11c62a8.tar.gz
Update supported models (bz 959888)
-rw-r--r--virtManager/uihelpers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/virtManager/uihelpers.py b/virtManager/uihelpers.py
index 4657bcdb..ba69ee91 100644
--- a/virtManager/uihelpers.py
+++ b/virtManager/uihelpers.py
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2009 Red Hat, Inc.
+# Copyright (C) 2009, 2013 Red Hat, Inc.
# Copyright (C) 2009 Cole Robinson <crobinso@redhat.com>
#
# This program is free software; you can redistribute it and/or modify
@@ -188,13 +188,13 @@ def build_sound_combo(vm, combo, no_default=False):
dev_model.set_sort_column_id(0, Gtk.SortType.ASCENDING)
disable_rhel = not vm.rhel6_defaults()
- rhel6_soundmodels = ["ich6", "ac97", "es1370"]
+ rhel_soundmodels = ["ich6", "ac97"]
for m in virtinst.VirtualAudio.MODELS:
if m == virtinst.VirtualAudio.MODEL_DEFAULT and no_default:
continue
- if (disable_rhel and m not in rhel6_soundmodels):
+ if (disable_rhel and m not in rhel_soundmodels):
continue
dev_model.append([m])