aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arg_helpers.h
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2015-02-16 21:04:05 -0800
committerJosh Blum <josh@joshknows.com>2015-02-16 21:04:05 -0800
commit535a505069834fdcba99aa0763f55e0c754b76a9 (patch)
treef1ffc06124a37f7b24f1bb0d6a3a0b632d6e015c /lib/arg_helpers.h
parent6d6a483cfbe7ecae6d0858ef862d44405efb6e6f (diff)
soapy: fixes from last commit w/ field test
Diffstat (limited to 'lib/arg_helpers.h')
-rw-r--r--lib/arg_helpers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arg_helpers.h b/lib/arg_helpers.h
index 1700cd2..6155ea5 100644
--- a/lib/arg_helpers.h
+++ b/lib/arg_helpers.h
@@ -39,7 +39,7 @@ inline std::string dict_to_args_string( const dict_t &d )
std::string out;
BOOST_FOREACH(const pair_t pair, d)
{
- if (not out.empty()) out += ", ";
+ if (not out.empty()) out += ",";
out += pair.first + "='" + pair.second + "'";
}
return out;