diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-09-27 13:11:21 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-09-27 13:11:21 (GMT) |
commit | 1f09c663add7edc6af0093d1eb3eca02bd0864b9 (patch) | |
tree | 6c7678745f228ec96325063c3d2a7608b1040b2b /Tools/hg/hgtouch.py | |
parent | eecdd77c6bfb26143319f061e93713c070911d0d (diff) | |
download | cpython-1f09c663add7edc6af0093d1eb3eca02bd0864b9.zip cpython-1f09c663add7edc6af0093d1eb3eca02bd0864b9.tar.gz cpython-1f09c663add7edc6af0093d1eb3eca02bd0864b9.tar.bz2 |
let this work with system Python 2.5
Diffstat (limited to 'Tools/hg/hgtouch.py')
-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 5961a10..0471691 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 |