##// END OF EJS Templates
shortname: truncate at '.' too
Matt Mackall -
r3533:bb44489b default
parent child Browse files
Show More
@@ -952,6 +952,9 def shortuser(user):
952 952 f = user.find(' ')
953 953 if f >= 0:
954 954 user = user[:f]
955 f = user.find('.')
956 if f >= 0:
957 user = user[:f]
955 958 return user
956 959
957 960 def walkrepos(path):
General Comments 0
You need to be logged in to leave comments. Login now