diff --git a/src/python/depth_first_search.cpp b/src/python/depth_first_search.cpp index a9b6c34c..84f2d66b 100644 --- a/src/python/depth_first_search.cpp +++ b/src/python/depth_first_search.cpp @@ -138,7 +138,7 @@ void export_depth_first_search() def("depth_first_search", &depth_first_search, (arg("graph"), - arg("root_vertex") = graph_traits::null_vertex(), + arg("root_vertex") = graph_traits::null_vertex(), arg("visitor") = dfs_visitor::default_arg(), arg("color_map") = (vector_property_map*)0));