diff --git a/src/pygambit/util.h b/src/pygambit/util.h index 43acb579c..447b9c8e9 100644 --- a/src/pygambit/util.h +++ b/src/pygambit/util.h @@ -58,7 +58,7 @@ std::string WriteGame(const Game &p_game, const std::string &p_format) else if (p_format == "sgame") { return LaTeXGameWriter().Write(p_game); } - else if (p_format == "native") { + else if (p_format == "native" || p_format == "nfg" || p_format == "efg") { std::ostringstream f; p_game->Write(f, p_format); return f.str();