diff options
author | Viacheslav Kovalev <kovyl2404@gmail.com> | 2015-05-21 15:16:49 +0300 |
---|---|---|
committer | Viacheslav V. Kovalev <kovyl2404@gmail.com> | 2015-05-22 00:26:38 +0300 |
commit | 49d977c2b815a2ce30056e8fd133060576ce575e (patch) | |
tree | 6bd2860d831482bc8de6db72a6b5dd9db0cb38cd /src | |
parent | d91c37ed5cee67a44cc95b4a9e54e6e8582818a9 (diff) |
Initialize namespace in rebar_state with default value.
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_state.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_state.erl b/src/rebar_state.erl index 55081a5..18d6be7 100644 --- a/src/rebar_state.erl +++ b/src/rebar_state.erl @@ -48,7 +48,7 @@ lock = [], current_profiles = [default] :: [atom()], - namespace = undefined :: atom(), + namespace = default :: atom(), command_args = [], command_parsed_args = {[], []}, |