mirror of
https://github.com/python/cpython.git
synced 2025-08-01 23:53:15 +00:00
if __name__ etc
print filename when asking log message
This commit is contained in:
parent
00bbf09e1a
commit
547e8d8c0f
1 changed files with 3 additions and 1 deletions
|
@ -52,6 +52,7 @@ def checkin(x, copts, fn):
|
|||
if not new and same(x, copts, fn, data):
|
||||
print "%s: unchanged since last checkin" % fn
|
||||
return
|
||||
print "Checking in", fn, "..."
|
||||
message = asklogmessage(new)
|
||||
messages = x.put(fn, data, message)
|
||||
if messages:
|
||||
|
@ -151,4 +152,5 @@ commands = {
|
|||
'diff': ('c', diff),
|
||||
}
|
||||
|
||||
main()
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue