RefactoringRope/FileSystemCommands.py

changeset 20
83b71483e198
parent 1
9f687137a929
child 35
79e19b499675
--- a/RefactoringRope/FileSystemCommands.py	Sun Jan 30 19:00:34 2011 +0100
+++ b/RefactoringRope/FileSystemCommands.py	Sun Jan 30 19:19:40 2011 +0100
@@ -13,6 +13,7 @@
 
 from E5Gui.E5Application import e5App
 
+
 class e5FileSystemCommands(object):
     """
     Class implementing file system commands for rope.
@@ -36,7 +37,7 @@
         self.__project.appendFile(path)
         vcs = self.__project.getVcs()
         if vcs is not None:
-            vcs.vcsAdd(path, noDialog = True)
+            vcs.vcsAdd(path, noDialog=True)
     
     def create_folder(self, path):
         """
@@ -47,7 +48,7 @@
         self.__normal_actions.create_folder(path)
         vcs = self.__project.getVcs()
         if vcs is not None:
-            vcs.vcsAdd(path, noDialog = True)
+            vcs.vcsAdd(path, noDialog=True)
     
     def move(self, path, new_location):
         """
@@ -63,7 +64,7 @@
             else:
                 self.__project.renameFile(path, new_location)
         else:
-            vcs.vcsMove(path, self.__project, new_location, noDialog = True)
+            vcs.vcsMove(path, self.__project, new_location, noDialog=True)
     
     def remove(self, path):
         """
@@ -80,7 +81,7 @@
                 self.__project.removeFile(path)
             self.__normal_actions.remove(path)
         else:
-            vcs.vcsRemove(path, noDialog = True)
+            vcs.vcsRemove(path, noDialog=True)
     
     def write(self, path, data):
         """

eric ide

mercurial