Columnify text.
[python_utils.git] / ansi.py
diff --git a/ansi.py b/ansi.py
index 476f0a4dd9f80c111567a6b8c5395ac17f2686a2..dc9a31542f4551a73d9ab1de341b7fce11e85f47 100755 (executable)
--- a/ansi.py
+++ b/ansi.py
@@ -1620,7 +1620,7 @@ def italic() -> str:
 
 
 def italics() -> str:
-    return "\e[3m"
+    return italic()
 
 
 def underline() -> str:
@@ -1632,7 +1632,7 @@ def strikethrough() -> str:
 
 
 def strike_through() -> str:
-    return "\e[9m"
+    return strikethrough()
 
 
 def is_16color(num: int) -> bool: