diff options
author | Marius Gedminas <marius@gedmin.as> | 2012-12-19 16:50:46 +0200 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2012-12-19 16:33:30 +0100 |
commit | b44cd8aeba18cb944c74345b3372b4705e4051a6 (patch) | |
tree | ffff599a9151627effb37c71873bf67c5e83efcd | |
parent | 239c883119f68004802493ade1584ef214da14dc (diff) |
Fix misspelled variable name
Noticed by pyflakes. I've no idea what sort of errors it could've
caused at runtime.
-rwxr-xr-x | git-coverage | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-coverage b/git-coverage index 67f4c7c..5c1769e 100755 --- a/git-coverage +++ b/git-coverage @@ -420,7 +420,7 @@ class PythonCoverage: if not line.startswith("!"): coverage[no] = line elif match_any_re(self._skips, line[1:]): - covarege[no] = line + coverage[no] = line no += 1 return coverage |