diff options
author | Eric Merritt <[email protected]> | 2013-03-13 11:46:03 -0700 |
---|---|---|
committer | Eric Merritt <[email protected]> | 2013-03-13 11:46:03 -0700 |
commit | c7fd47264688ff74adafc18269a378c14742b284 (patch) | |
tree | 6c491fddb665ae86cb6113749549b7ca635ffc73 /src/rcl_prv_config.erl | |
parent | 6734e9ec4e0dd4c0678d10e8b8e48552ffb4e995 (diff) | |
parent | b69815402b3456699a47273a8c731850fb6b7871 (diff) | |
download | relx-c7fd47264688ff74adafc18269a378c14742b284.tar.gz relx-c7fd47264688ff74adafc18269a378c14742b284.tar.bz2 relx-c7fd47264688ff74adafc18269a378c14742b284.zip |
Merge pull request #30 from tsloughter/next
Update readme, fix test, generate erl script with proper paths, copy start_clean.boot if config opt set
Diffstat (limited to 'src/rcl_prv_config.erl')
-rw-r--r-- | src/rcl_prv_config.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rcl_prv_config.erl b/src/rcl_prv_config.erl index 60655b1..1027edf 100644 --- a/src/rcl_prv_config.erl +++ b/src/rcl_prv_config.erl @@ -54,8 +54,8 @@ do(State) -> -spec format_error(Reason::term()) -> iolist(). format_error({consult, ConfigFile, Reason}) -> - io_lib:format("Unable to read file ~s: ~s", [ConfigFile, - file:format_error(Reason)]); + io_lib:format("Unable to read file ~s: ~s", [ConfigFile, + file:format_error(Reason)]); format_error({invalid_term, Term}) -> io_lib:format("Invalid term in config file: ~p", [Term]). |