Skip to content

Commit

Permalink
Fix seek default value
Browse files Browse the repository at this point in the history
  • Loading branch information
palaviv committed Jan 19, 2017
1 parent bd68b38 commit b62c0c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caster.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def get_args():
' When not given first one found is used.',
default=None)
parser.add_argument('--subtitles', help='subtitles', default=None)
parser.add_argument('--seek', help='media starting position in HH:MM:SS format', default=0)
parser.add_argument('--seek', help='media starting position in HH:MM:SS format', default="00:00:00")
return parser.parse_args()


Expand Down

0 comments on commit b62c0c1

Please sign in to comment.