diff rhodecode/lib/vcs/backends/git/changeset.py @ 4089:a5888ca796b5

Fixed spelling of get's to gets
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 16 Jul 2013 21:54:28 +0200
parents 91f440a11b94
children 4e429252f3ee ffd45b185016
line wrap: on
line diff
--- a/rhodecode/lib/vcs/backends/git/changeset.py	Tue Jul 16 21:41:03 2013 +0200
+++ b/rhodecode/lib/vcs/backends/git/changeset.py	Tue Jul 16 21:54:28 2013 +0200
@@ -470,7 +470,7 @@
     @LazyProperty
     def affected_files(self):
         """
-        Get's a fast accessible file changes for given changeset
+        Gets a fast accessible file changes for given changeset
         """
         added, modified, deleted = self._changes_cache
         return list(added.union(modified).union(deleted))