py3: make i18n/hggettext use absolute_import
authorPulkit Goyal <7895pulkit@gmail.com>
Fri, 13 May 2016 02:56:13 +0530
changeset 29170 2516bba643e7
parent 29169 c9ab5a0bc7c5
child 29171 de28dedd1ff1
py3: make i18n/hggettext use absolute_import
i18n/hggettext
--- a/i18n/hggettext	Fri May 13 02:41:35 2016 +0530
+++ b/i18n/hggettext	Fri May 13 02:56:13 2016 +0530
@@ -20,7 +20,11 @@
 join the message cataloges to get the final catalog.
 """
 
-import os, sys, inspect
+from __future__ import absolute_import
+
+import inspect
+import os
+import sys
 
 
 def escape(s):