瀏覽代碼

Merge pull request #229 from pigmonkey/stdin

only use stdin if it has a value
Nick Sweeting 6 年之前
父節點
當前提交
84fa6f6699
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      archivebox/archive.py

+ 2 - 2
archivebox/archive.py

@@ -86,8 +86,8 @@ def main(*args):
             )
             print_help()
             raise SystemExit(1)
-
-        import_path = save_stdin_source(stdin_raw_text)
+        if stdin_raw_text:
+            import_path = save_stdin_source(stdin_raw_text)
 
     ### Handle ingesting urls from a remote file/feed
     # (e.g. if an RSS feed URL is used as the import path)