changeset 29152:c5057b7780dc

py3: make i18n/posplit use absolute_import
author Pulkit Goyal <7895pulkit@gmail.com>
date Fri, 13 May 2016 03:08:46 +0530
parents 7996c3acc33b
children 90d84e1e427a
files i18n/posplit
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)