Longer file names are now generated when "git log" runs in the changes module.

The default setting configures printed file names to fit to a 80 character
wide terminal; something that destroys the ability to do proper filtering of
long file names in gitinspector.
This commit is contained in:
Adam Waldenberg 2012-05-24 02:03:57 +02:00
parent 706dd6c07a
commit ed501fe757
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class AuthorInfo:
class Changes:
def __init__(self, hard):
self.commits = []
git_log_r = os.popen("git log --pretty='%ad|%t|%aN|%s' --stat=100000 --no-merges -w " +
git_log_r = os.popen("git log --pretty='%ad|%t|%aN|%s' --stat=100000,8192 --no-merges -w " +
"{0} --date=short".format("-C -C -M" if hard else ""))
commit = None
found_valid_extension = False