Skip to content

Commit

Permalink
Fix for handling ways
Browse files Browse the repository at this point in the history
Fix for handling ways
  • Loading branch information
james2432 committed Aug 23, 2016
1 parent 12a611a commit 6023630
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ConvertGatineauData2Osm/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,8 @@ private void write_changeset(ref StreamWriter sw, DataTable dt)
xmn.Attributes.SetNamedItem(attr);
//doc.LoadXml("<tag k='source:addr' v='Gatineau.ca/donneesouvertes "+ DateTime.Now.Day.ToString().PadLeft(2,'0') + monthstr[DateTime.Now.Month] + DateTime.Now.Year.ToString() +"' />");
ndlist[0].AppendChild(xmn);
resultset = process.InnerXml;
resultset = process.InnerXml;
resultset.Replace("<osm>", "").Replace("</osm>", "");
}
else
{
Expand Down

0 comments on commit 6023630

Please sign in to comment.