diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2017-11-18 20:14:04 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2017-11-18 20:14:04 -0500 |
| commit | b757518e116657aecb128617087b54dcad8a0f37 (patch) | |
| tree | 081d49f43c6f67b0d0ecfcd88a9245a5a94d3617 | |
| parent | ca345f7565ea10a4081d4a559d87f882af31dc0f (diff) | |
String was broken
| -rw-r--r-- | actinide/types.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actinide/types.py b/actinide/types.py index 2961771..be58b0c 100644 --- a/actinide/types.py +++ b/actinide/types.py @@ -105,7 +105,7 @@ def display_decimal(value): @An.fn def string(value): - return string(Value) + return str(value) @An.fn def string_p(value): |
