From b7b164b84ce9b959257c58f9ab5c2011eafff917 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Fri, 3 Jan 2020 04:00:33 -0300 Subject: [PATCH] fix comment alignment --- lbry/stream/descriptor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lbry/stream/descriptor.py b/lbry/stream/descriptor.py index 6a4ba6edb..1c0305ddc 100644 --- a/lbry/stream/descriptor.py +++ b/lbry/stream/descriptor.py @@ -17,8 +17,8 @@ log = logging.getLogger(__name__) RE_ILLEGAL_FILENAME_CHARS = re.compile( r'(' - r'[<>:"/\\|?*]+|' # Illegal characters - r'[\x00-\x1F]+|' # All characters in range 0-31 + r'[<>:"/\\|?*]+|' # Illegal characters + r'[\x00-\x1F]+|' # All characters in range 0-31 r'[ \t]*(\.)+[ \t]*$|' # Dots at the end r'(^[ \t]+|[ \t]+$)|' # Leading and trailing whitespace r'^CON$|^PRN$|^AUX$|' # Illegal names