diff options
Diffstat (limited to 'test/DocTests.py')
-rwxr-xr-x | test/DocTests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/DocTests.py b/test/DocTests.py index 4814091c..a63ac0d3 100755 --- a/test/DocTests.py +++ b/test/DocTests.py @@ -18,8 +18,8 @@ from difflib import unified_diff class DocTests: def __init__(self, args): scriptpath = os.path.dirname(os.path.realpath(__file__)) - self.ledger = os.path.abspath(args.ledger) - self.sourcepath = os.path.abspath(args.file) + self.ledger = os.path.realpath(args.ledger) + self.sourcepath = os.path.realpath(args.file) self.verbose = args.verbose self.tests = args.examples |