From d65dc273b68e5e141e48f856f257234e01283a8a Mon Sep 17 00:00:00 2001 From: Artem Bityutskiy Date: Thu, 21 Feb 2013 14:00:13 +0200 Subject: [PATCH] BmapCopy: disable a flals pylint warning Silence this one: W:275,0: Anomalous backslash in string: '\0'. String constant might be missing an r prefix. Change-Id: I816d20f284154f2c424a35090461db5a265edcbb Signed-off-by: Artem Bityutskiy --- bmaptools/BmapCopy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bmaptools/BmapCopy.py b/bmaptools/BmapCopy.py index 580d318..76c28f7 100644 --- a/bmaptools/BmapCopy.py +++ b/bmaptools/BmapCopy.py @@ -272,7 +272,7 @@ class BmapCopy: # exception - the error message will start form new line. if self._progress_started: # The "move cursor up" escape sequence - self._progress_file.write('\033[1A') + self._progress_file.write('\033[1A') # pylint: disable=W1401 else: self._progress_started = True -- 2.7.4