Skip to content

Commit ec1ed39

Browse files
committed
No longer stating that output for accounts is contributor-specific, moving to a more generic term of account.
1 parent f6a1e56 commit ec1ed39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gitxray/include/gx_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def _print_output(self, data_source, entity_string, skip_ansi=False):
148148
def _create_text_output(self, outfile):
149149
skip_ansi = outfile != None
150150
output = self._print_output(self._repositories, f"Repository https://github.com/ENTITY_STR", skip_ansi)
151-
output += self._print_output(self._contributors, f"repository Contributor ENTITY_STR", skip_ansi)
151+
output += self._print_output(self._contributors, f"account ENTITY_STR", skip_ansi)
152152

153153
if len(self._anonymous) > 0 and len(next(iter(self._anonymous.values()))) > 1: # Did this so that I don't hardcode "#" as an index
154154
output += self._print_output(self._anonymous, "Anonymous Contributors (those with no GitHub account)", skip_ansi)

0 commit comments

Comments
 (0)