Commit af3595b8 authored by Guido van Rossum's avatar Guido van Rossum

only diff differing files

add PostUsageMessage
parent c26a3a99
......@@ -113,6 +113,8 @@ class MyFile(File):
self.file
def diff(self, opts = []):
if self.lsum == self.rsum:
return
import tempfile
flags = ''
for o, a in opts:
......@@ -188,7 +190,9 @@ class rcvs(CommandFrameWork):
GlobalFlags = 'd:h:p:qv'
UsageMessage = \
"usage: rcvs [-d directory] [-h host] [-p port] [-q] [-v] subcommand arg ..."
"usage: rcvs [-d directory] [-h host] [-p port] [-q] [-v] [subcommand arg ...]"
PostUsageMessage = \
"If no subcommand is given, the status of all files is listed"
def __init__(self):
"""Constructor."""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment