Skip to content

Commit

Permalink
Merge pull request #254 from jomcruz93/master
Browse files Browse the repository at this point in the history
Changed file path separator to "/" instead of "\" for note export
  • Loading branch information
m-aslam-mj2 committed Nov 1, 2018
2 parents 2f41233 + 91629de commit 46aabdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/commons/util/CsvUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class CsvUtil {

// private static final String BASE_DIRECTORY = "data/CSVexport/";
private static final String BASE_DIRECTORY = System.getProperty("user.home") + "\\";
private static final String BASE_DIRECTORY = System.getProperty("user.home") + "/";
private static final String COMMA_DELIM = ",";
private static final String NEW_LINE_SEPARATOR = "\n";
private static final String MESSAGE_ERROR = "Error! could not write to %s.";
Expand Down

0 comments on commit 46aabdd

Please sign in to comment.