浏览代码

Fix warning message

Kentaro Wada 5 年之前
父节点
当前提交
3158981154
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. 4 3
      labelme/cli/json_to_dataset.py

+ 4 - 3
labelme/cli/json_to_dataset.py

@@ -12,9 +12,10 @@ from labelme import utils
 
 
 def main():
-    logger.warning('This script is aimed to demonstrate how to convert the'
-                   'JSON file to a single image dataset, and not to handle'
-                   'multiple JSON files to generate a real-use dataset.')
+    logger.warning('This script is aimed to demonstrate how to convert the '
+                   'JSON file to a single image dataset.')
+    logger.warning("It won't handle multiple JSON files to generate a "
+                   "real-use dataset.")
 
     parser = argparse.ArgumentParser()
     parser.add_argument('json_file')