diff options
author | Michael DeHaan <michael.dehaan@gmail.com> | 2012-04-03 02:08:40 +0200 |
---|---|---|
committer | Michael DeHaan <michael.dehaan@gmail.com> | 2012-04-03 02:08:40 +0200 |
commit | 4792021f478c419b16aa58e3f17f01e5c5e76ac2 (patch) | |
tree | a27f5c46d9817824e0cb4de147cf4dbdc5f830e0 /test/TestPlayBook.py | |
parent | Merge remote branch 'public/integration' (diff) | |
download | ansible-4792021f478c419b16aa58e3f17f01e5c5e76ac2.tar.xz ansible-4792021f478c419b16aa58e3f17f01e5c5e76ac2.zip |
Fix syntax error in user patch
Diffstat (limited to 'test/TestPlayBook.py')
-rw-r--r-- | test/TestPlayBook.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/TestPlayBook.py b/test/TestPlayBook.py index c0a3f28af0..b32c76780d 100644 --- a/test/TestPlayBook.py +++ b/test/TestPlayBook.py @@ -43,7 +43,7 @@ class TestCallbacks(object): EVENTS.append([ 'import', [ host, filename ]]) def on_error(self, host, msg): - EVENTS.append([ 'stderr', [ host, msg ]) + EVENTS.append([ 'stderr', [ host, msg ]]) def on_not_import_for_host(self, host, missing_filename): pass |