summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG2
-rwxr-xr-xsetup.py2
-rw-r--r--test/test.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index fbd59cd..500f5ac 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -5,7 +5,7 @@
5 * More code documentation 5 * More code documentation
6 * Torrent files are now cleaned in a deeper fashion 6 * Torrent files are now cleaned in a deeper fashion
7 * Better support of weird command-line arguments 7 * Better support of weird command-line arguments
8 * Usual cleaup/misc fixes 8 * Usual cleanup/misc fixes
9 9
100.5.4 - 19aug2015 100.5.4 - 19aug2015
11 * Distance a bit MAT from hachoir 11 * Distance a bit MAT from hachoir
diff --git a/setup.py b/setup.py
index db69777..d3d8462 100755
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ import os
5from distutils.core import setup, Command 5from distutils.core import setup, Command
6from DistUtilsExtra.command import * 6from DistUtilsExtra.command import *
7 7
8__version__ = '6.0' 8__version__ = '0.6'
9 9
10# Remove MANIFEST file, since distutils 10# Remove MANIFEST file, since distutils
11# doesn't properly update it when 11# doesn't properly update it when
diff --git a/test/test.py b/test/test.py
index 6886c1f..58e7ec7 100644
--- a/test/test.py
+++ b/test/test.py
@@ -95,9 +95,9 @@ def run_all_tests():
95 95
96 96
97def set_local(): 97def set_local():
98 """ Monkey patch pathes to run the testsuite on the _local_ 98 """ Monkey patch paths to run the testsuite on the _local_
99 version of MAT. See `run_all_tests` for more information about 99 version of MAT. See `run_all_tests` for more information about
100 what pathes we're changing and why. 100 what paths we're changing and why.
101 """ 101 """
102 os.environ['PATH'] = '..:' + os.environ['PATH'] 102 os.environ['PATH'] = '..:' + os.environ['PATH']
103 sys.path.append('..') 103 sys.path.append('..')