From 17c8bd0e923fac3fe04408eadcfe526fd525cbe3 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sun, 11 Sep 2016 23:06:47 +0300 Subject: [PATCH] gpg: add experimental warning --- trezor_agent/gpg/__main__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/trezor_agent/gpg/__main__.py b/trezor_agent/gpg/__main__.py index dd50309..6dbee00 100755 --- a/trezor_agent/gpg/__main__.py +++ b/trezor_agent/gpg/__main__.py @@ -89,6 +89,9 @@ def main(): args = p.parse_args() logging.basicConfig(level=logging.DEBUG if args.verbose else logging.INFO, format='%(asctime)s %(levelname)-10s %(message)s') + log.warning('This GPG tool is still in EXPERIMENTAL mode, ' + 'so please note that the API and features may ' + 'change without backwards compatibility!') args.run(args)