UI/FindFileNameDialog.py

branch
Py2 comp.
changeset 3058
0a02c433f52d
parent 3057
10516539f238
parent 3030
4a0a82ddd9d2
child 3145
a9de05d4a22f
diff -r 10516539f238 -r 0a02c433f52d UI/FindFileNameDialog.py
--- a/UI/FindFileNameDialog.py	Fri Oct 18 23:00:41 2013 +0200
+++ b/UI/FindFileNameDialog.py	Fri Nov 01 15:48:48 2013 +0100
@@ -110,8 +110,8 @@
             return
         
         patternFormat = fileExt and "{0}{1}{2}" or "{0}*{1}{2}"
-        fileNamePattern = patternFormat.format(fileName, os.extsep,
-            fileExt and fileExt or '*')
+        fileNamePattern = patternFormat.format(
+            fileName, os.extsep, fileExt and fileExt or '*')
         
         searchPaths = []
         if self.searchDirCheckBox.isChecked() and \
@@ -196,8 +196,7 @@
     def on_searchDirButton_clicked(self):
         """
         Private slot to handle the clicked signal of the search directory
-        selection
-        button.
+        selection button.
         """
         searchDir = E5FileDialog.getExistingDirectory(
             None,

eric ide

mercurial