bzr revid: fp@tinyerp.com-20081027135117-vn4eg3j5f1atbdw5
This commit is contained in:
Fabien Pinckaers 2008-10-27 14:51:17 +01:00
commit d1a79ab570
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ import fnmatch
import pooler
import netsvc
import posix
import os
from service import security
class abstracted_fs:
@ -491,7 +491,7 @@ class abstracted_fs:
r[7] = self.getmtime(node)
r[8] = self.getmtime(node)
r[9] = self.getmtime(node)
return posix.stat_result(r)
return os.stat_result(r)
lstat = stat
# --- Wrapper methods around os.path.*