From f9a14cfec1229d6e3e4f4dd9d672d2acc3ad50e0 Mon Sep 17 00:00:00 2001 From: Peter Sankauskas Date: Wed, 2 May 2012 09:50:20 -0700 Subject: [PATCH] Adding a missing '~' to use the user's home directory instead of the root file system for the module arguments --- hacking/test-module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking/test-module b/hacking/test-module index 58feee3df9f..231b0555aed 100755 --- a/hacking/test-module +++ b/hacking/test-module @@ -49,7 +49,7 @@ if len(sys.argv) > 1: else: args = "" -argspath = os.path.expanduser("/.ansible_test_module_arguments") +argspath = os.path.expanduser("~/.ansible_test_module_arguments") argsfile = open(argspath, 'w') argsfile.write(args) argsfile.close()