Browse Source

Merge pull request #160 from vmarkovtsev/master

Fix the churn grid
Vadim Markovtsev 6 years ago
parent
commit
3d7d2f63b0
1 changed files with 1 additions and 0 deletions
  1. 1 0
      labours.py

+ 1 - 0
labours.py

@@ -839,6 +839,7 @@ def plot_churn_matrix(args, repo, people, matrix):
     ax.set_xticklabels(["Unidentified"] + people, rotation=45, ha="left",
                        va="bottom", rotation_mode="anchor")
     ax.set_yticks(numpy.arange(0.5, matrix.shape[0] + 0.5), minor=True)
+    ax.grid(False)
     ax.grid(which="minor")
     apply_plot_style(fig, ax, None, args.background, args.font_size, args.size)
     if not args.output: