From d1b2fea3082cbc0651443dab1c0f5a03f11be435 Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Sun, 22 Nov 2009 18:31:22 -0500 Subject: [PATCH] Fix typos in afs.acl and afs.fs introduced in 0e2974f1. --- afs/acl.py | 2 +- afs/fs.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/afs/acl.py b/afs/acl.py index 5735438..20a416f 100644 --- a/afs/acl.py +++ b/afs/acl.py @@ -1,4 +1,4 @@ -import afs._acl +from afs import _acl from afs._acl import READ, WRITE, INSERT, LOOKUP, DELETE, LOCK, ADMINISTER, \ USR0, USR1, USR2, USR3, USR4, USR5, USR6, USR7 from afs._acl import getCallerAccess diff --git a/afs/fs.py b/afs/fs.py index a12b365..02c2756 100644 --- a/afs/fs.py +++ b/afs/fs.py @@ -1,5 +1,5 @@ import errno -import afs._fs +from afs import _fs from afs._fs import whichcell def inafs(path): -- 1.7.9.5