We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ef9f1b commit ad50197Copy full SHA for ad50197
1 file changed
fuse.py
@@ -19,6 +19,7 @@
19
20
from string import join
21
import sys
22
+import os
23
from errno import *
24
from os import environ
25
import re
@@ -326,7 +327,7 @@ def print_version(self, file=sys.stderr):
326
327
def parse_args(self, args=None, values=None):
328
o, a = SubbedOptParse.parse_args(self, args, values)
329
if a and self.fetch_mp:
- self.fuse_args.mountpoint = a.pop()
330
+ self.fuse_args.mountpoint = os.path.realpath(a.pop())
331
return o, a
332
333
def add_option(self, *opts, **attrs):
0 commit comments