diff frontends/src/jp/cmd_blog.py @ 2232:4f389486667d

jp: added constant to handle ANSI code for header and subheaders
author Goffi <goffi@goffi.org>
date Thu, 27 Apr 2017 00:57:04 +0200
parents 301bb52c8715
children ed28798fd76c
line wrap: on
line diff
--- a/frontends/src/jp/cmd_blog.py	Thu Apr 27 00:55:02 2017 +0200
+++ b/frontends/src/jp/cmd_blog.py	Thu Apr 27 00:57:04 2017 +0200
@@ -67,7 +67,6 @@
 INOTIFY_INSTALL = '"pip install inotify"'
 SECURE_UNLINK_MAX = 10 * 2 # we double value as there are 2 files per draft (content and metadata)
 SECURE_UNLINK_DIR = ".backup"
-HEADER_ANSI = A.BOLD + A.FG_YELLOW
 MB_KEYS = (u"id",
            u"atom_id",
            u"updated",
@@ -223,7 +222,7 @@
                 if OUTPUT_OPT_NO_HEADER in self.args.output_opts:
                     header = u''
                 else:
-                    header = HEADER_ANSI + k + u': ' + A.RESET
+                    header = C.A_HEADER + k + u': ' + A.RESET
                 lines.append(header + data[k])
         return u'\n'.join(lines)
 
@@ -279,7 +278,7 @@
                     header = ''
                 else:
                     header = u"{k_fmt}{key}:{k_fmt_e} {sep}".format(
-                    k_fmt = HEADER_ANSI,
+                    k_fmt = C.A_HEADER,
                     key = k,
                     k_fmt_e = A.RESET,
                     sep = u'\n' if 'content' in k else u'')