You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by do...@apache.org on 2019/04/21 13:58:16 UTC

[incubator-iotdb] branch fix_jira_issue_83 updated: fix a bug

This is an automated email from the ASF dual-hosted git repository.

dope pushed a commit to branch fix_jira_issue_83
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git


The following commit(s) were added to refs/heads/fix_jira_issue_83 by this push:
     new af95751  fix a bug
af95751 is described below

commit af95751d8dc89fe8b0c8266c006ddc44441dd3ba
Author: xuyi556677@163.com <xu...@163.com>
AuthorDate: Sun Apr 21 21:58:03 2019 +0800

    fix a bug
---
 iotdb-cli/src/main/java/org/apache/iotdb/cli/tool/ImportCsv.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iotdb-cli/src/main/java/org/apache/iotdb/cli/tool/ImportCsv.java b/iotdb-cli/src/main/java/org/apache/iotdb/cli/tool/ImportCsv.java
index 639d743..c805c5e 100644
--- a/iotdb-cli/src/main/java/org/apache/iotdb/cli/tool/ImportCsv.java
+++ b/iotdb-cli/src/main/java/org/apache/iotdb/cli/tool/ImportCsv.java
@@ -140,7 +140,7 @@ public class ImportCsv extends AbstractCsvTool {
         return;
       }
     }
-    System.out.println("Start to import data from: " + file.getName() + " at:" + file.getParent());
+    System.out.println("Start to import data from: " + file.getName());
     errorFlag = true;
     try(BufferedReader br = new BufferedReader(new FileReader(file));
         BufferedWriter bw = new BufferedWriter(new FileWriter(errorFile));