]> arthur.barton.de Git - bup.git/blobdiff - cmd/mux-cmd.py
cleanup-mounts-under: Don't fail when /proc/mounts isn't readable
[bup.git] / cmd / mux-cmd.py
index 299dec9da5b854d9b056c817e0bab329daa31042..332d7bdce463a0330549b290bee5b901f3381cac 100755 (executable)
@@ -4,7 +4,7 @@ from bup import options
 from bup.helpers import *
 
 optspec = """
-bup mux command [command arguments...]
+bup mux command [arguments...]
 --
 """
 o = options.Options(optspec)
@@ -12,9 +12,7 @@ o = options.Options(optspec)
 if len(extra) < 1:
     o.fatal('command is required')
 
-cmdpath, cmdfn = os.path.split(__file__)
 subcmd = extra
-subcmd[0] = os.path.join(cmdpath, 'bup-' + subcmd[0])
 
 debug2('bup mux: starting %r\n' % (extra,))