diff --git a/zipline/__main__.py b/zipline/__main__.py index b1f8d394..d8171130 100644 --- a/zipline/__main__.py +++ b/zipline/__main__.py @@ -360,14 +360,11 @@ def bundles(): raise ingestions = [] - print( - '\n'.join( - '%s %s' % (bundle, line) - for line in ( - ingestions if ingestions else ('',) - ) - ), - ) + # If we got no ingestions, either because the directory didn't exist or + # becuase there were no entries, print a single message indicating that + # no ingestions have yet been made. + for timestamp in ingestions or [""]: + print("%s %s" % (bundle, timestamp)) if __name__ == '__main__':