1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00

removed guillemets

This commit is contained in:
Pierre Gueth 2009-03-26 17:23:55 +01:00
parent 113a58096d
commit be0a53e877

View File

@ -34,7 +34,7 @@ class Action:
print "unknown action %s for %s" % (self.name,self.path)
def terminal(self):
if not os.fork():
subprocess.Popen(['gnome-terminal',"--default-working-directory='%s'" % self.path]).wait()
subprocess.Popen(['gnome-terminal',"--default-working-directory=%s" % self.path]).wait()
sys.exit()
def nautilus(self):
if not os.fork():