~ubuntu-branches/ubuntu/lucid/autokey/lucid

« back to all changes in this revision

Viewing changes to src/lib/service.py

  • Committer: Bazaar Package Importer
  • Author(s): Luke Faraone
  • Date: 2009-12-16 08:46:43 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20091216084643-9xm19ct4yoejfci3
Tags: 0.61.0b-1
* New upstream version:
  - Fix bug with sending newlines from scripts
  - Fix another crash in the EvDev daemon related to button conversions

Show diffs side-by-side

added added

removed removed

Lines of Context:
322
322
        #self.ignoreCount = len(expansion.string) + expansion.backspaces + extraBs + len(extraKeys) + expansion.lefts
323
323
        
324
324
        mediator.send_backspace(expansion.backspaces + extraBs)
325
 
        mediator.send_string(expansion.string.replace('\n', '<enter>'))
326
 
        mediator.send_string(extraKeys.replace('\n', '<enter>'))
 
325
        mediator.send_string(expansion.string)
 
326
        mediator.send_string(extraKeys)
327
327
        #mediator.send_left(expansion.lefts)
328
328
        mediator.flush()
329
329