~cmiller/ubuntu/quantal/deluge/fix-parameter-move-storage

« back to all changes in this revision

Viewing changes to deluge/ui/console/screen.py

  • Committer: Bazaar Package Importer
  • Author(s): Cristian Greco
  • Date: 2010-01-27 21:39:22 UTC
  • mfrom: (4.1.10 sid)
  • Revision ID: james.westby@ubuntu.com-20100127213922-6ewqrgzxvhc860tm
Tags: 1.2.0-1
* New upstream version.
* debian/control: build-depend on python instead of python-dev (fix
  build-depends-on-python-dev-with-no-arch-any)
* move deluge.desktop file from deluge to deluge-gtk package, due to
  upstream change. (Closes: #557519)
* provide a README.Debian file for deluge-web package with information
  about the default password. (Closes: #560382)

Show diffs side-by-side

added added

removed removed

Lines of Context:
390
390
                self.input = self.input[:self.input_cursor - 1] + self.input[self.input_cursor:]
391
391
                self.input_cursor -= 1
392
392
 
393
 
        elif c == curses.KEY_DC or c == 51:
 
393
        elif c == curses.KEY_DC:
394
394
            if self.input and self.input_cursor < len(self.input):
395
395
                self.input = self.input[:self.input_cursor] + self.input[self.input_cursor + 1:]
396
396