diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-09-27 09:11:21 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-09-27 09:11:21 -0400 |
commit | 1f09c663add7edc6af0093d1eb3eca02bd0864b9 (patch) | |
tree | 6c7678745f228ec96325063c3d2a7608b1040b2b | |
parent | eecdd77c6bfb26143319f061e93713c070911d0d (diff) | |
download | cpython-git-1f09c663add7edc6af0093d1eb3eca02bd0864b9.tar.gz |
let this work with system Python 2.5
-rw-r--r-- | Tools/hg/hgtouch.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/hg/hgtouch.py b/Tools/hg/hgtouch.py index 5961a10ad0..0471691768 100644 --- a/Tools/hg/hgtouch.py +++ b/Tools/hg/hgtouch.py @@ -7,6 +7,7 @@ syntax of make rules. In addition to the dependency syntax, #-comments are supported. """ +from __future__ import with_statement import errno import os |