Skip to content

Commit

Permalink
Merge pull request #3535 from STEllAR-GROUP/msimberg-patch-2
Browse files Browse the repository at this point in the history
Fix hiding of docker credentials
  • Loading branch information
msimberg committed Nov 8, 2018
2 parents 549f782 + 4970f98 commit d171765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exception.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ namespace hpx { namespace detail
std::string retval = hpx::util::format("{} entries:\n", env.size()); std::string retval = hpx::util::format("{} entries:\n", env.size());
for (std::string const& s : env) for (std::string const& s : env)
{ {
if (retval.find("DOCKER") == std::string::npos) if (s.find("DOCKER") == std::string::npos)
{ {
retval += " " + s + "\n"; retval += " " + s + "\n";
} }
Expand Down

0 comments on commit d171765

Please sign in to comment.