~ubuntu-branches/ubuntu/wily/spyder/wily-proposed

« back to all changes in this revision

Viewing changes to spyderlib/plugins/workingdirectory.py

  • Committer: Package Import Robot
  • Author(s): Ghislain Antony Vaillant, Ghislain Antony Vaillant, Picca Frédéric-Emmanuel
  • Date: 2014-10-19 11:42:57 UTC
  • mfrom: (1.2.8)
  • Revision ID: package-import@ubuntu.com-20141019114257-st1rz4fmmscgphhm
Tags: 2.3.1+dfsg-1
* Team upload

[Ghislain Antony Vaillant]
* New upstream release. (Closes: #765963)
* Bump Standards-Version to 3.9.6 (no changes required).
* d/control: fix pedantic lintian warning regarding capitalization in
  packages' description.

[Picca Frédéric-Emmanuel]
* Update the homepage now that upstream moved to bitbucket.
* debian/copyright
  - updated for 2.3.1 version
* debian/control
  + Recommends: python-pandas and python3-pandas

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    def setup_page(self):
35
35
        about_label = QLabel(_("The <b>global working directory</b> is "
36
36
                    "the working directory for newly opened <i>consoles</i> "
37
 
                    "(Python/IPython interpreters and terminals), for the "
 
37
                    "(Python/IPython consoles and terminals), for the "
38
38
                    "<i>file explorer</i>, for the <i>find in files</i> "
39
39
                    "plugin and for new files created in the <i>editor</i>."))
40
40
        about_label.setWordWrap(True)
179
179
        adjust = self.get_option('working_dir_adjusttocontents')
180
180
        self.pathedit = PathComboBox(self, adjust_to_contents=adjust)
181
181
        self.pathedit.setToolTip(_("This is the working directory for newly\n"
182
 
                               "opened consoles (Python interpreters and\n"
 
182
                               "opened consoles (Python/IPython consoles and\n"
183
183
                               "terminals), for the file explorer, for the\n"
184
184
                               "find in files plugin and for new files\n"
185
185
                               "created in the editor"))