projects
/
invirt/packages/python-routefs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(from parent 1:
68707f3
)
Merge branch 'master' into debian
author
Evan Broder
<broder@mit.edu>
Sat, 20 Sep 2008 17:01:11 +0000
(13:01 -0400)
committer
Evan Broder
<broder@mit.edu>
Sat, 20 Sep 2008 17:01:11 +0000
(13:01 -0400)
routefs/__init__.py
patch
|
blob
|
history
setup.py
patch
|
blob
|
history
diff --git
a/routefs/__init__.py
b/routefs/__init__.py
index
2c62ae5
..
c3b0357
100644
(file)
--- a/
routefs/__init__.py
+++ b/
routefs/__init__.py
@@
-86,6
+86,8
@@
class RouteFS(fuse.Fuse):
return NoEntry()
controller = match.pop('controller')
result = getattr(self, controller)(**match)
+ if result is None:
+ return NoEntry()
if type(result) is str:
result = File(result)
if type(result) is list:
diff --git
a/setup.py
b/setup.py
index
4fb1db7
..
a0421c3
100755
(executable)
--- a/
setup.py
+++ b/
setup.py
@@
-4,7
+4,7
@@
from setuptools import setup, find_packages
setup(
name="RouteFS",
- version="1.0.0",
+ version="1.0.1",
description="RouteFS: A FUSE API wrapper based on URL routing",
author="Evan Broder",
author_email="broder@mit.edu",