Project/TranslationPropertiesDialog.py

changeset 2995
63d874899b8b
parent 2302
f29e9405c851
child 3057
10516539f238
child 3160
209a07d7e401
--- a/Project/TranslationPropertiesDialog.py	Tue Oct 08 19:46:25 2013 +0200
+++ b/Project/TranslationPropertiesDialog.py	Tue Oct 08 19:47:37 2013 +0200
@@ -92,7 +92,8 @@
         if "%language%" in tp:
             tp = tp.split("%language%")[0]
         if not os.path.isabs(tp):
-            tp = Utilities.fromNativeSeparators(os.path.join(self.project.ppath, tp))
+            tp = Utilities.fromNativeSeparators(
+                os.path.join(self.project.ppath, tp))
         tsfile = E5FileDialog.getOpenFileName(
             self,
             self.trUtf8("Select translation file"),
@@ -120,7 +121,8 @@
         """
         tbp = Utilities.fromNativeSeparators(self.transBinPathEdit.text())
         if not os.path.isabs(tbp):
-            tbp = Utilities.fromNativeSeparators(os.path.join(self.project.ppath, tbp))
+            tbp = Utilities.fromNativeSeparators(
+                os.path.join(self.project.ppath, tbp))
         directory = E5FileDialog.getExistingDirectory(
             self,
             self.trUtf8("Select directory for binary translations"),
@@ -187,7 +189,8 @@
         
     def on_exceptionsList_currentRowChanged(self, row):
         """
-        Private slot to handle the currentRowChanged signal of the exceptions list.
+        Private slot to handle the currentRowChanged signal of the exceptions
+        list.
         
         @param row the current row (integer)
         """

eric ide

mercurial