##// END OF EJS Templates
fix line/statys typo in utils.submodule
MinRK -
Show More
@@ -82,9 +82,9 b' def check_submodule_status(root=None):'
82 status = status.decode("ascii", "replace")
82 status = status.decode("ascii", "replace")
83
83
84 for line in status.splitlines():
84 for line in status.splitlines():
85 if status.startswith('-'):
85 if line.startswith('-'):
86 return 'missing'
86 return 'missing'
87 elif status.startswith('+'):
87 elif line.startswith('+'):
88 return 'unclean'
88 return 'unclean'
89
89
90 return 'clean'
90 return 'clean'
General Comments 0
You need to be logged in to leave comments. Login now