~ubuntu-branches/ubuntu/lucid/dots/lucid

« back to all changes in this revision

Viewing changes to dots/import_assistant.py

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Thibault
  • Date: 2010-01-12 23:40:08 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100112234008-vh5997hs16g147or
Tags: 0.0.20100108-1
* New upstream snapshot.
* debian/copyright: Fix copyright sign.
* debian/control: Add build dependency on liblouis (>= 1.6.2) and
  liblouisxml (>= 1.9.1).

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
        def _sepatatorFunc(model, itr):
178
178
            return model[itr][0] == None
179
179
        combo = self.main_xml.get_object('trans_table_sel_combo')
180
 
        table_list = filter(lambda x: x.endswith('ctb'),
 
180
        table_list = filter(lambda x: x.endswith('ctb') or x.endswith('utb'),
181
181
                            os.listdir(TABLES_DIR))
182
182
        table_list.sort()
183
183
        model = gtk.ListStore(str, str)