diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2021-03-07 11:44:58 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2021-03-07 11:44:58 +0100 |
commit | 59009144a22b41e1f67837ba2289a3c1f2d28e72 (patch) | |
tree | b419247d0c25ff7acec2e36f12cf47aaaf9d9134 | |
parent | 7dd318216e6ac300ef4af9a2c9913617c5533724 (diff) | |
download | fetchmail-59009144a22b41e1f67837ba2289a3c1f2d28e72.tar.gz fetchmail-59009144a22b41e1f67837ba2289a3c1f2d28e72.tar.bz2 fetchmail-59009144a22b41e1f67837ba2289a3c1f2d28e72.zip |
fetchmailconf --version: print Python version, too.
-rwxr-xr-x | fetchmailconf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fetchmailconf.py b/fetchmailconf.py index d528341e..0690051e 100755 --- a/fetchmailconf.py +++ b/fetchmailconf.py @@ -2196,6 +2196,7 @@ Usage: fetchmailconf {[-d] [-f fetchmailrc]|-h|--help|-V|--version} sys.exit(0) elif switch == '-V' or switch == '--version': print("fetchmailconf %s" % VERSION) + print("Running on python", sys.version) print(""" Copyright (C) 1997 - 2003 Eric S. Raymond Copyright (C) 2005 - 2020 Matthias Andree |