summaryrefslogtreecommitdiff
path: root/versioneer.py
diff options
context:
space:
mode:
authorRichard Dale <richard.dale@codethink.co.uk>2018-10-16 18:03:51 +0100
committerJürg Billeter <j@bitron.ch>2018-10-16 20:40:39 +0100
commitac5b482d297a80e6f86af90ccb1cfb8e2d377774 (patch)
tree9de54a21c5b2674d5f9cac1f03d2bb17abd4d2d7 /versioneer.py
parentb023d5c01abbc2b74ee9d150b7999e647da0951a (diff)
downloadbuildstream-ac5b482d297a80e6f86af90ccb1cfb8e2d377774.tar.gz
Fix spelling of it's and its
Diffstat (limited to 'versioneer.py')
-rw-r--r--versioneer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/versioneer.py b/versioneer.py
index 48e9b2e25..1c97e0227 100644
--- a/versioneer.py
+++ b/versioneer.py
@@ -1494,7 +1494,7 @@ def get_cmdclass():
# of Versioneer. A's setup.py imports A's Versioneer, leaving it in
# sys.modules by the time B's setup.py is executed, causing B to run
# with the wrong versioneer. Setuptools wraps the sub-dep builds in a
- # sandbox that restores sys.modules to it's pre-build state, so the
+ # sandbox that restores sys.modules to its pre-build state, so the
# parent is protected against the child's "import versioneer". By
# removing ourselves from sys.modules here, before the child build
# happens, we protect the child from the parent's versioneer too.