Skip to content

Commit 5978dcf

Browse files
authored
Merge pull request readthedocs#5320 from regisb/regisb/fix-clean_builds-argument
Fix "clean_builds" command argument parsing
2 parents e43c8b4 + 3f72d4a commit 5978dcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readthedocs/core/management/commands/clean_builds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def add_arguments(self, parser):
2323
parser.add_argument(
2424
'--days',
2525
dest='days',
26-
type='int',
26+
type=int,
2727
default=365,
2828
help='Find builds older than DAYS days, default: 365',
2929
)

0 commit comments

Comments
 (0)