Skip to content

Commit

Permalink
Merge pull request #445 from frmwrk123/fixes-parsing-error
Browse files Browse the repository at this point in the history
Changed type values to callables
  • Loading branch information
jrief committed Sep 15, 2017
2 parents 16f12cb + 7b9e77a commit 814add3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easy_thumbnails/management/commands/thumbnail_cleanup.py
Expand Up @@ -134,13 +134,13 @@ class Command(BaseCommand):
action='store',
dest='last_n_days',
default=0,
type='int',
type=int,
help='The number of days back in time to clean thumbnails for.'),
make_option(
'--path',
action='store',
dest='cleanup_path',
type='string',
type=str,
help='Specify a path to clean up.'),
)

Expand Down

0 comments on commit 814add3

Please sign in to comment.