Project/Project.py

changeset 3621
15f23ed3f216
parent 3600
7d17c492ab95
child 3644
a2c88b9b1d16
--- a/Project/Project.py	Fri May 30 13:17:20 2014 +0200
+++ b/Project/Project.py	Fri May 30 15:16:40 2014 +0200
@@ -391,8 +391,8 @@
         self.translationsRoot = ""  # the translations prefix
         self.name = ""
         self.opened = False
-        self.subdirs = [""]  # record the project dir as a relative path
-                             # (i.e. empty path)
+        self.subdirs = [""]
+        # record the project dir as a relative path (i.e. empty path)
         self.otherssubdirs = []
         self.vcs = None
         self.vcsRequested = False
@@ -1559,8 +1559,8 @@
                             .format(targetfile),
                             icon=E5MessageBox.Warning)
                         if not res:
-                            continue  # don't overwrite, carry on
-                                      # with next file
+                            continue
+                            # don't overwrite, carry on with next file
                             
                     shutil.copy(file, target)
                 except EnvironmentError:
@@ -4613,7 +4613,7 @@
                     """<p>Reason: {0}</p>""").format(str(why)))
             return
         
-        if not "PKGLIST" in self.pdata["OTHERS"]:
+        if "PKGLIST" not in self.pdata["OTHERS"]:
             self.appendFile("PKGLIST")
         
     @pyqtSlot()
@@ -4698,7 +4698,7 @@
         archiveFile.writestr("VERSION", version.encode("utf-8"))
         archiveFile.close()
         
-        if not archive in self.pdata["OTHERS"]:
+        if archive not in self.pdata["OTHERS"]:
             self.appendFile(archive)
         
         if self.ui.notificationsEnabled():
@@ -4736,7 +4736,7 @@
         if not path.endswith("/") and not path.endswith("\\"):
             path = "{0}/".format(path)
         
-        if not path in zipFile.namelist():
+        if path not in zipFile.namelist():
             self.__createZipDirEntries(os.path.split(path[:-1])[0], zipFile)
             zipFile.writestr(path, b"")
     

eric ide

mercurial