Skip to content

Commit

Permalink
Merge pull request #2 from BenFields724/master
Browse files Browse the repository at this point in the history
Update from fork
  • Loading branch information
BenFields22 committed Jun 11, 2018
2 parents 5ef59a3 + 178adde commit 5eef82b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion transitfeed/fareattribute.py
Expand Up @@ -22,7 +22,7 @@ class FareAttribute(GtfsObjectBase):
"""Represents a fare type."""
_REQUIRED_FIELD_NAMES = ['fare_id', 'price', 'currency_type',
'payment_method', 'transfers']
_FIELD_NAMES = _REQUIRED_FIELD_NAMES + ['transfer_duration']
_FIELD_NAMES = _REQUIRED_FIELD_NAMES + ['agency_id','transfer_duration']
_TABLE_NAME = "fare_attributes"

def __init__(self,
Expand Down
2 changes: 1 addition & 1 deletion transitfeed/problems.py
Expand Up @@ -132,7 +132,7 @@ def MissingColumn(self, file_name, column_name, context=None,
self.AddToAccumulator(e)

def UnrecognizedColumn(self, file_name, column_name, context=None,
type=TYPE_WARNING):
type=TYPE_ERROR):
e = UnrecognizedColumn(file_name=file_name, column_name=column_name,
context=context, context2=self._context, type=type)
self.AddToAccumulator(e)
Expand Down

0 comments on commit 5eef82b

Please sign in to comment.