Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/jarabe/journal/model.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jarabe/journal/model.py b/src/jarabe/journal/model.py
index d9e4cf1..831bd0e 100644
--- a/src/jarabe/journal/model.py
+++ b/src/jarabe/journal/model.py
@@ -226,7 +226,7 @@ class InplaceResultSet(BaseResultSet):
def _get_all_files(self, dir_path):
files = []
for entry in os.listdir(dir_path):
- full_path = os.path.join(dir_path, entry)
+ full_path = dir_path + '/' + entry
stat = os.stat(full_path)
if S_IFMT(stat.st_mode) == S_IFDIR: