##// END OF EJS Templates
scm: cvs: cat returns nil if revision does not exist at model....
Toshi MARUYAMA -
r5288:ae2304449b23
parent child
Show More
@@ -65,7 +65,11 class Repository::Cvs < Repository
65 end
65 end
66
66
67 def cat(path, identifier=nil)
67 def cat(path, identifier=nil)
68 rev = identifier.nil? ? nil : changesets.find_by_revision(identifier)
68 rev = nil
69 if ! identifier.nil?
70 rev = changesets.find_by_revision(identifier)
71 return nil if rev.nil?
72 end
69 scm.cat(path, rev.nil? ? nil : rev.committed_on)
73 scm.cat(path, rev.nil? ? nil : rev.committed_on)
70 end
74 end
71
75
General Comments 0
You need to be logged in to leave comments. Login now