Skip to content

Commit

Permalink
Say 0.16 about the fix for cmd line options
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaoming committed Oct 12, 2015
1 parent 03b6df0 commit c91c646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kalitectl.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
# Match all patterns of "--option value" and fail if they exist
__validate_cmd_options = re.compile(r"--?[^\s]+\s+(?:(?!--|-[\w]))")
if __validate_cmd_options.search(" ".join(sys.argv[1:])):
sys.stderr.write("Please only use --option=value or -x123 patterns. No spaces allowed between option and value. The option parser gets confused if you do otherwise.\n\nWill be fixed for next version 0.15")
sys.stderr.write("Please only use --option=value or -x123 patterns. No spaces allowed between option and value. The option parser gets confused if you do otherwise.\n\nWill be fixed for next version 0.16")
sys.exit(1)

from threading import Thread
Expand Down

0 comments on commit c91c646

Please sign in to comment.