Skip to content

Commit

Permalink
default of escaping to false
Browse files Browse the repository at this point in the history
  • Loading branch information
spyoungtech committed Mar 4, 2019
1 parent 12839af commit da3cd73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ahk/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def move(self, x='', y='', width=None, height=None):
script = self._render_template('window/win_move.ahk', x=x, y=y, width=width, height=height)
self.engine.run_script(script)

def send(self, keys, delay=None, raw=False, blocking=False, escape=True):
def send(self, keys, delay=None, raw=False, blocking=False, escape=False):
"""
Send keystrokes directly to the window.
Uses ControlSend
Expand Down

0 comments on commit da3cd73

Please sign in to comment.