[kupfer] obj.fileactions: Fix os.path usage in RevealFile action
- From: Ulrik Sverdrup <usverdrup src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [kupfer] obj.fileactions: Fix os.path usage in RevealFile action
- Date: Mon, 11 Jan 2010 22:51:50 +0000 (UTC)
commit 43623410e9ac80336c7b71a907bed3cadf7cb71f
Author: Ulrik Sverdrup <ulrik sverdrup gmail com>
Date: Mon Jan 11 19:25:11 2010 +0100
obj.fileactions: Fix os.path usage in RevealFile action
kupfer/obj/fileactions.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/kupfer/obj/fileactions.py b/kupfer/obj/fileactions.py
index 484f74b..75dbd01 100644
--- a/kupfer/obj/fileactions.py
+++ b/kupfer/obj/fileactions.py
@@ -136,7 +136,7 @@ class RevealFile (Action):
def activate(self, leaf):
fileloc = leaf.object
- parent = os.path.normpath(path.join(fileloc, os.path.pardir))
+ parent = os.path.normpath(os.path.join(fileloc, os.path.pardir))
utils.show_path(parent)
def get_description(self):
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]