py3: make i18n/posplit use absolute_import
authorPulkit Goyal <7895pulkit@gmail.com>
Fri, 13 May 2016 03:08:46 +0530
changeset 29152 c5057b7780dc
parent 29151 7996c3acc33b
child 29153 90d84e1e427a
py3: make i18n/posplit use absolute_import
i18n/posplit
--- a/i18n/posplit	Thu May 12 09:39:14 2016 -0400
+++ b/i18n/posplit	Fri May 13 03:08:46 2016 +0530
@@ -5,9 +5,11 @@
 # license: MIT/X11/Expat
 #
 
+from __future__ import absolute_import
+
+import polib
 import re
 import sys
-import polib
 
 def addentry(po, entry, cache):
     e = cache.get(entry.msgid)