only use stdin if it has a value

Closes #228
This commit is contained in:
Pig Monkey 2019-04-30 17:25:41 -07:00
parent 6eff6f43c0
commit 34270b2b12

View file

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