Co-authored-by: Tomas R. <tomas.roun8@gmail.com>
--- /dev/null
+Add warning messages when ``pygettext`` unimplemented ``-a/--extract-all`` option is called.
-a
--extract-all
- Extract all strings.
+ Deprecated: Not implemented and will be removed in a future version.
-cTAG
--add-comments=TAG
if opt in ('-h', '--help'):
usage(0)
elif opt in ('-a', '--extract-all'):
+ print("DepreciationWarning: -a/--extract-all is not implemented and will be removed in a future version",
+ file=sys.stderr)
options.extractall = 1
elif opt in ('-c', '--add-comments'):
options.comment_tags.add(arg)