diff --git a/bin/cqlsh b/bin/cqlsh index a4ad6d0ea2..5b63696ecd 100755 --- a/bin/cqlsh +++ b/bin/cqlsh @@ -728,6 +728,8 @@ class Shell(cmd.Cmd): try: import readline except ImportError: + if platform.system() == 'Windows': + print "WARNING: pyreadline dependency missing. Install to enable tab completion." pass else: old_completer = readline.get_completer()