Show More
@@ -952,6 +952,9 def shortuser(user): | |||||
952 | f = user.find(' ') |
|
952 | f = user.find(' ') | |
953 | if f >= 0: |
|
953 | if f >= 0: | |
954 | user = user[:f] |
|
954 | user = user[:f] | |
|
955 | f = user.find('.') | |||
|
956 | if f >= 0: | |||
|
957 | user = user[:f] | |||
955 | return user |
|
958 | return user | |
956 |
|
959 | |||
957 | def walkrepos(path): |
|
960 | def walkrepos(path): |
General Comments 0
You need to be logged in to leave comments.
Login now