Kaydet (Commit) 903afd04 authored tarafından Guido van Rossum's avatar Guido van Rossum

add bug comment

üst c503c97f
......@@ -4,8 +4,11 @@
# XXX To do:
#
# Bugs:
# - if the remote file is deleted, "rcvs update" will fail
#
# Functionality:
# - descend into directories
# - descend into directories (alraedy done for update)
# - cvs add; cvs rm
# - commit new files
# - conflict resolution
......@@ -188,6 +191,7 @@ class MyFile(File):
def put(self, message = ""):
print "Checking in", self.file, "..."
data = open(self.file).read()
self.proxy.lock(self.file)
messages = self.proxy.put(self.file, data, message)
if messages:
print messages
......@@ -314,7 +318,7 @@ class RCVS(CVS):
class rcvs(CommandFrameWork):
GlobalFlags = 'd:h:p:qv'
GlobalFlags = 'd:h:p:qvL'
UsageMessage = \
"usage: rcvs [-d directory] [-h host] [-p port] [-q] [-v] [subcommand arg ...]"
PostUsageMessage = \
......
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