Project/TranslationPropertiesDialog.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 2995
63d874899b8b
child 3145
a9de05d4a22f
diff -r 9986ec0e559a -r 10516539f238 Project/TranslationPropertiesDialog.py
--- a/Project/TranslationPropertiesDialog.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/Project/TranslationPropertiesDialog.py	Fri Oct 18 23:00:41 2013 +0200
@@ -94,7 +94,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"),
@@ -122,7 +123,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"),
@@ -189,7 +191,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