[gnome-dvb-daemon] Update paths to initial tuning data
- From: Sebastian Polsterl <sebp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-dvb-daemon] Update paths to initial tuning data
- Date: Sat, 18 Jun 2016 23:33:09 +0000 (UTC)
commit 3205157ab8cd6305cc9aafe2d87d8b06bf06abcd
Author: devegoo <swiatektomasz99 gmail com>
Date: Fri Apr 24 16:23:46 2015 +0200
Update paths to initial tuning data
Amends commit 22085a9fd0e59861aa58b95712139bd3730d14ec
https://github.com/GNOME/gnome-dvb-daemon/pull/1/commits/f60f41434232cda714c05d47a67b97ee4def22f4
.../ui/wizard/pages/InitialTuningDataPage.py | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/client/gnomedvb/ui/wizard/pages/InitialTuningDataPage.py
b/client/gnomedvb/ui/wizard/pages/InitialTuningDataPage.py
index 289bd66..aa93afa 100644
--- a/client/gnomedvb/ui/wizard/pages/InitialTuningDataPage.py
+++ b/client/gnomedvb/ui/wizard/pages/InitialTuningDataPage.py
@@ -232,7 +232,7 @@ class InitialTuningDataPage(BasePage):
self.country_combo = Gtk.ComboBox.new_with_model_and_entry(self.countries)
self.country_combo.set_hexpand(True)
self.country_combo.connect('changed', self.on_country_changed)
- self.__data_dir = "terrestrial"
+ self.__data_dir = "dvb-t"
cell = Gtk.CellRendererText()
self.country_combo.pack_start(cell, True)
self.country_combo.set_entry_text_column(0)
@@ -305,7 +305,7 @@ class InitialTuningDataPage(BasePage):
self.country_combo = Gtk.ComboBox.new_with_model_and_entry(self.countries)
self.country_combo.set_hexpand(True)
self.country_combo.connect('changed', self.on_country_changed)
- self.__data_dir = "cable"
+ self.__data_dir = "dvb-c"
cell = Gtk.CellRendererText()
self.country_combo.pack_start(cell, True)
self.country_combo.set_entry_text_column(0)
@@ -407,8 +407,8 @@ class InitialTuningDataPage(BasePage):
def read_satellites(self):
for d in DVB_APPS_DIRS:
if os.access(d, os.F_OK | os.R_OK):
- for f in os.listdir(os.path.join(d, 'satellite')):
- self.satellites.append([f, os.path.join(d, 'satellite', f)])
+ for f in os.listdir(os.path.join(d, 'dvb-s')):
+ self.satellites.append([f, os.path.join(d, 'dvb-s', f)])
def on_satellite_changed(self, selection):
model, aiter = selection.get_selected()
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]