Skip to content

Commit

Permalink
base parser has no default error and warnings
Browse files Browse the repository at this point in the history
Closes #327.

Some process can just output some statistics after the render.
For exmaple:

Errors: 0; Warinings: 0;

This means no errors but 'error' sting is preset.
  • Loading branch information
timurhai committed Jan 26, 2017
1 parent e3ef495 commit 2d514e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions afanasy/python/parsers/parser.py
Expand Up @@ -12,8 +12,8 @@ class parser(object):
"""

def __init__(self):
self.str_warning = ['warning']
self.str_error = ['error']
self.str_warning = []
self.str_error = []
self.str_badresult = []
self.str_finishedsuccess = []
self.percent = 0
Expand Down

0 comments on commit 2d514e4

Please sign in to comment.