Hi all,

I have set up the following loop:

Code:
foreach name in "Botswana" "Burkino Faso" "Cameroon" "Ethiopia" "Ghana" "Kenya" "Lesotho" "Malawi" "Mauritius" "Mozambique" "Namibia" "Nigeria" "Rwanda" "Senegal" "South Africa" "Tanzania" "Uganda" "Zambia" {
    graph twoway (line Man_share year if CountryName=="`name'"), ///
    title("`name'", size(small)) ///
    ytitle("") ///
    saving(graph_`name') 
}
For both "Burkino Faso" and "South Africa", when the loop attempts to save the graph, I get the following two messages:

Code:
invalid syntax,  Faso not allowed
Code:
invalid syntax,  Africa not allowed
Is there a way to fix this?