##// END OF EJS Templates
rhg: Fix `rhg status` file content comparison...
Simon Sapin -
r49130:594cf890 default
parent child Browse files
Show More
@@ -312,5 +312,5 b' fn cat_file_is_modified('
312 312
313 313 let fs_path = hg_path_to_os_string(hg_path).expect("HgPath conversion");
314 314 let fs_contents = repo.working_directory_vfs().read(fs_path)?;
315 return Ok(contents_in_p1 == &*fs_contents);
315 return Ok(contents_in_p1 != &*fs_contents);
316 316 }
General Comments 0
You need to be logged in to leave comments. Login now