Skip to content

Commit

Permalink
Merge pull request #54 from antialias/master
Browse files Browse the repository at this point in the history
except AttributeError was logging incorrect error message
  • Loading branch information
thombashi committed Jun 17, 2018
2 parents 589d31c + 06a5f11 commit 9d4fc5f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions sqlitebiter/sqlitebiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,9 +460,6 @@ def gs(ctx, credentials, title, output_path):
except ptr.OpenError as e:
logger.error(msgfy.to_error_message(e))
result_counter.inc_fail()
except AttributeError:
logger.error(u"invalid credentials data: path={}".format(credentials))
result_counter.inc_fail()
except (ptr.ValidationError, ptr.DataError) as e:
logger.error(u"invalid credentials data: path={}, message={}".format(
credentials, str(e)))
Expand Down

0 comments on commit 9d4fc5f

Please sign in to comment.