Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2010-07-03 13:39:34 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2010-07-03 13:39:34 (GMT)
commit4eff0846c3955cd192e310abf9972f6e27da0de9 (patch)
tree53a77b32b50282d298276f89724334ca8cf223a0
parenta7186d4ede605d9e4fe7158e1bb25d60f0c512cf (diff)
work around __doc__ being unavailable with -OO
-rwxr-xr-xdatastore-fuse.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/datastore-fuse.py b/datastore-fuse.py
index bd4bac8..b047387 100755
--- a/datastore-fuse.py
+++ b/datastore-fuse.py
@@ -762,7 +762,8 @@ def safe_name(name):
def main():
- usage = __doc__ + fuse.Fuse.fusage
+ usage = "datastore-fuse: access the Sugar data store using FUSE\n"
+ usage += fuse.Fuse.fusage
# FIXME: figure out how to force options to on, properly.
sys.argv += ['-o', 'use_ino']