projects
/
invirt/packages/python-routefs.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Update debian/changelog for 1.0.1-1
[invirt/packages/python-routefs.git]
/
routefs
/
__init__.py
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: