~ubuntu-branches/debian/experimental/spyder/experimental

« back to all changes in this revision

Viewing changes to spyderlib/plugins/explorer.py

  • Committer: Package Import Robot
  • Author(s): Picca Frédéric-Emmanuel, Ghislain Antony Vaillant, Picca Frédéric-Emmanuel
  • Date: 2015-02-26 13:31:59 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20150226133159-zvom6ax6mah3irhv
Tags: 2.3.3+dfsg-1~exp1
[Ghislain Antony Vaillant]
* New upstream release.

[Picca Frédéric-Emmanuel]
* Upstream moved to github (watch, control and copyright file updated)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
# Local imports
20
20
from spyderlib.baseconfig import _
21
 
from spyderlib.config import VALID_EXT
22
21
from spyderlib.utils.qthelpers import create_action
23
22
from spyderlib.widgets.explorer import ExplorerWidget
24
23
from spyderlib.plugins import SpyderPluginMixin
31
30
    def __init__(self, parent=None):
32
31
        ExplorerWidget.__init__(self, parent=parent,
33
32
                                name_filters=self.get_option('name_filters'),
34
 
                                valid_types=VALID_EXT,
35
33
                                show_all=self.get_option('show_all'),
36
 
                                show_toolbar=self.get_option('show_toolbar'),
37
34
                                show_icontext=self.get_option('show_icontext'))
38
35
        SpyderPluginMixin.__init__(self, parent)
39
36