Skip to content

Commit 38c535e

Browse files
committed
Fixed bug introduced in PR #997 (#1011)
Added missing argument in `donkey train` (cherry picked from commit d5f01a1)
1 parent c0fc892 commit 38c535e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

donkeycar/management/base.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,9 @@ def parse_args(self, args):
525525
parser.add_argument('--model', default=None, help='output model name')
526526
parser.add_argument('--type', default=None, help='model type')
527527
parser.add_argument('--config', default='./config.py', help=HELP_CONFIG)
528+
parser.add_argument('--myconfig', default='./myconfig.py',
529+
help='file name of myconfig file, defaults to '
530+
'myconfig.py')
528531
parser.add_argument('--framework',
529532
choices=['tensorflow', 'pytorch', None],
530533
required=False,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def package_files(directory, strip_leading):
2424
long_description = fh.read()
2525

2626
setup(name='donkeycar',
27-
version="4.3.6.3",
27+
version="4.3.6.4",
2828
long_description=long_description,
2929
description='Self driving library for python.',
3030
url='https://github.com/autorope/donkeycar',

0 commit comments

Comments
 (0)