Merge pull request #1175 from baijum/typo_comment

Fix typo s/cpmment/comment
This commit is contained in:
Jeff Schroeder 2012-05-02 09:44:26 -07:00
commit 1d035d88e8

View File

@ -503,7 +503,7 @@ def _check_directory(
comment = 'The following files will be changed:\n'
for fn_ in changes:
for key, val in changes[fn_].items():
cpmment += '{0}: {1} - {2}'.format(fn_, key, val)
comment += '{0}: {1} - {2}'.format(fn_, key, val)
return None, comment
return True, 'The directory {0} is in the correct state'.format(name)