summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMatt Joyce <matt.joyce@cloudscaling.com>2012-05-29 12:04:03 -0700
committerMatt Joyce <matt.joyce@cloudscaling.com>2012-05-29 13:01:57 -0700
commitd5cc5fd2f023e5d7095476282159027dce957cb3 (patch)
tree1b3c08c1981384379d6df3c685d140932de614cb /tools
parent1bbf44fa67412040246b93b15cab18e715a0be07 (diff)
Grammar fixes.
Change-Id: Iff3f5765193e0bc98dfc377ee5a9b6f47ae11859
Diffstat (limited to 'tools')
-rwxr-xr-xtools/hacking.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hacking.py b/tools/hacking.py
index 485030f99..8e8391919 100755
--- a/tools/hacking.py
+++ b/tools/hacking.py
@@ -77,7 +77,7 @@ def nova_todo_format(physical_line):
"""
pos = physical_line.find('TODO')
pos1 = physical_line.find('TODO(')
- pos2 = physical_line.find('#') # make sure its a comment
+ pos2 = physical_line.find('#') # make sure it's a comment
if (pos != pos1 and pos2 >= 0 and pos2 < pos):
return pos, "NOVA N101: Use TODO(NAME)"