-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes a buildout issue due to dev being in version name; reformatting…
… dos NL/CR crap
- Loading branch information
Purcell, Frank
committed
Nov 1, 2017
1 parent
180008e
commit bea0dc6
Showing
10 changed files
with
425 additions
and
435 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
recursive-include gtfsdb/configs * | ||
recursive-include gtfsdb/data * | ||
recursive-include gtfsdb/configs * | ||
recursive-include gtfsdb/data * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
from gtfsdb.model.agency import Agency | ||
from gtfsdb.model.calendar import * | ||
from gtfsdb.model.db import Database | ||
from gtfsdb.model.fare import * | ||
from gtfsdb.model.feed_info import FeedInfo | ||
from gtfsdb.model.frequency import Frequency | ||
from gtfsdb.model.gtfs import GTFS | ||
from gtfsdb.model.route import * | ||
from gtfsdb.model.route_stop import RouteStop | ||
from gtfsdb.model.shape import * | ||
from gtfsdb.model.stop import Stop | ||
from gtfsdb.model.stop_feature import * | ||
from gtfsdb.model.stop_time import StopTime | ||
from gtfsdb.model.transfer import Transfer | ||
from gtfsdb.model.trip import Trip | ||
from gtfsdb.model.block import Block | ||
from gtfsdb.model.agency import Agency | ||
from gtfsdb.model.calendar import * | ||
from gtfsdb.model.db import Database | ||
from gtfsdb.model.fare import * | ||
from gtfsdb.model.feed_info import FeedInfo | ||
from gtfsdb.model.frequency import Frequency | ||
from gtfsdb.model.gtfs import GTFS | ||
from gtfsdb.model.route import * | ||
from gtfsdb.model.route_stop import RouteStop | ||
from gtfsdb.model.shape import * | ||
from gtfsdb.model.stop import Stop | ||
from gtfsdb.model.stop_feature import * | ||
from gtfsdb.model.stop_time import StopTime | ||
from gtfsdb.model.transfer import Transfer | ||
from gtfsdb.model.trip import Trip | ||
from gtfsdb.model.block import Block |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
[loggers] | ||
keys = root | ||
|
||
[handlers] | ||
keys = console | ||
|
||
[formatters] | ||
keys = generic | ||
|
||
[logger_root] | ||
handlers = console | ||
level = DEBUG | ||
|
||
[handler_console] | ||
class = StreamHandler | ||
args = (sys.stdout,) | ||
formatter = generic | ||
|
||
[formatter_generic] | ||
datefmt = %H:%M:%S | ||
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s | ||
[loggers] | ||
keys = root | ||
|
||
[handlers] | ||
keys = console | ||
|
||
[formatters] | ||
keys = generic | ||
|
||
[logger_root] | ||
handlers = console | ||
level = DEBUG | ||
|
||
[handler_console] | ||
class = StreamHandler | ||
args = (sys.stdout,) | ||
formatter = generic | ||
|
||
[formatter_generic] | ||
datefmt = %H:%M:%S | ||
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s |
Oops, something went wrong.