##// END OF EJS Templates
Merge pull request #12609 from scarlehoff/fix_12180...
Matthias Bussonnier -
r26079:114a9c07 merge
parent child Browse files
Show More
@@ -1086,7 +1086,7 b' class Video(DisplayObject):'
1086 if url is None and isinstance(data, str) and data.startswith(('http:', 'https:')):
1086 if url is None and isinstance(data, str) and data.startswith(('http:', 'https:')):
1087 url = data
1087 url = data
1088 data = None
1088 data = None
1089 elif os.path.exists(data):
1089 elif data is not None and os.path.exists(data):
1090 filename = data
1090 filename = data
1091 data = None
1091 data = None
1092
1092
General Comments 0
You need to be logged in to leave comments. Login now