Skip to content

Commit

Permalink
Called Set_path before calling Create_pending_csvs.
Browse files Browse the repository at this point in the history
  • Loading branch information
claresudbery authored and Clare Sudbery committed Nov 26, 2019
1 parent acc3519 commit c5ebc2f
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Console/Reconciliation/ReconciliationIntro.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,17 @@ public void Start()

switch (input)
{
case "1": Create_pending_csvs(); break;
case "2": Decide_on_debug(); break;
case "1":
{
Set_path();
Create_pending_csvs(_path);
}
break;
case "2":
{
Decide_on_debug();
}
break;
}
}

Expand Down

0 comments on commit c5ebc2f

Please sign in to comment.