diff options
author | Guido van Rossum <guido@python.org> | 1995-06-23 22:40:59 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-06-23 22:40:59 (GMT) |
commit | 2ba1b4c5f2284c475aeaa7062a81505f5e5b7132 (patch) | |
tree | 2194dbe09e8d371a781b245f85331cb2c7a97960 | |
parent | bab472540143fe5bb124b07c948b9309ce072536 (diff) | |
download | cpython-2ba1b4c5f2284c475aeaa7062a81505f5e5b7132.zip cpython-2ba1b4c5f2284c475aeaa7062a81505f5e5b7132.tar.gz cpython-2ba1b4c5f2284c475aeaa7062a81505f5e5b7132.tar.bz2 |
add -L option
-rwxr-xr-x | Demo/pdist/rrcs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/pdist/rrcs.py b/Demo/pdist/rrcs.py index 70895ea..abd6ade 100755 --- a/Demo/pdist/rrcs.py +++ b/Demo/pdist/rrcs.py @@ -13,7 +13,7 @@ from rcsclient import openrcsclient def main(): sys.stdout = sys.stderr try: - opts, rest = getopt.getopt(sys.argv[1:], 'h:p:d:qv') + opts, rest = getopt.getopt(sys.argv[1:], 'h:p:d:qvL') if not rest: cmd = 'head' else: |