diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ledger3.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ledger3.texi b/doc/ledger3.texi index 55732ceb..92cb07fb 100644 --- a/doc/ledger3.texi +++ b/doc/ledger3.texi @@ -7656,11 +7656,11 @@ for loop), then the data reverts back to its raw state. @node Embedded Python, Amounts, Queries, Extending with Python @section Embedded Python -Can you embed Python into your data files using the 'python' directive: +You can embed Python into your data files using the 'python' directive: @smallexample python - import so + import os def check_path(path_value): print "%s => %s" % (str(path_value), os.path.isfile(str(path_value))) return os.path.isfile(str(path_value)) |