Fix bug in islocked() -- it would always return 0.

This commit is contained in:
Guido van Rossum 1998-03-17 21:28:21 +00:00
parent a341fc3bf7
commit 2e6938f167
1 changed files with 2 additions and 0 deletions

View File

@ -225,6 +225,8 @@ class RCS:
if status:
raise IOError, status
if not line: return None
if line[-1] == '\n':
line = line[:-1]
return self.realname(name_rev) == self.realname(line)
def checkfile(self, name_rev):