Skip to content

Commit

Permalink
fix add_url method
Browse files Browse the repository at this point in the history
  • Loading branch information
heniotierra committed Mar 12, 2017
1 parent e3300b3 commit dcd4073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tboplayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1778,7 +1778,7 @@ def add_url(self, *event):
except: pass
d = EditTrackDialog(self.root,"Add URL",
"Title", "",
"Location", "" if cb == "" or not cb.beginswith("http") else cb)
"Location", "" if cb == "" or not cb.startswith("http") else cb)
if d.result == None:
return
name = d.result[0]
Expand Down

0 comments on commit dcd4073

Please sign in to comment.