Skip to content

Commit

Permalink
error: fix typos
Browse files Browse the repository at this point in the history
Change-Id: I09c47024ef54c360ea3c15c5d4f169e13444e412
  • Loading branch information
Anthony King authored and dpursehouse committed Jun 4, 2015
1 parent cf738ed commit be4456c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions error.py
Expand Up @@ -80,7 +80,7 @@ def __init__(self, name=None):
self.name = name

def __str__(self):
if self.Name is None:
if self.name is None:
return 'in current directory'
return self.name

Expand All @@ -93,7 +93,7 @@ def __init__(self, name=None):
self.name = name

def __str__(self):
if self.Name is None:
if self.name is None:
return 'in current directory'
return self.name

Expand Down

0 comments on commit be4456c

Please sign in to comment.