comparison hgext/convert/hg.py @ 48875:6000f5b25c9b

py2: remove simple from __future__ statements These were needed for Python 2 support. Now that our linter no longer mandates these, we can start deleting them. Differential Revision: https://phab.mercurial-scm.org/D12254
author Gregory Szorc <gregory.szorc@gmail.com>
date Thu, 03 Mar 2022 17:34:00 +0100
parents b0aa9b0b9c21
children f254fc73d956
comparison
equal deleted inserted replaced
48874:af0b21d5a930 48875:6000f5b25c9b
14 # 14 #
15 # * Using "--config convert.hg.saverev=true" will make the source 15 # * Using "--config convert.hg.saverev=true" will make the source
16 # identifier to be stored in the converted revision. This will cause 16 # identifier to be stored in the converted revision. This will cause
17 # the converted revision to have a different identity than the 17 # the converted revision to have a different identity than the
18 # source. 18 # source.
19 from __future__ import absolute_import
20 19
21 import os 20 import os
22 import re 21 import re
23 import time 22 import time
24 23