mirror of
https://github.com/certbot/certbot.git
synced 2026-02-24 02:10:27 -05:00
8 lines
211 B
Python
Executable file
8 lines
211 B
Python
Executable file
from sys import argv, stderr
|
|
|
|
|
|
def main():
|
|
"""Act like letsencrypt --version insofar as printing the version number to
|
|
stderr."""
|
|
if '--version' in argv:
|
|
stderr.write('letsencrypt 99.9.9\n')
|