Skip to content

Commit

Permalink
Fix needs_gstreamer_env() signature
Browse files Browse the repository at this point in the history
Use iterable default value for `features`.
  • Loading branch information
Tuncer Ayaz committed Nov 21, 2019
1 parent a3ef594 commit 528322c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/servo/command_base.py
Expand Up @@ -562,7 +562,7 @@ def get_nightly_binary_path(self, nightly_date):

return self.get_executable(destination_folder)

def needs_gstreamer_env(self, target, env, uwp=False, features=None):
def needs_gstreamer_env(self, target, env, uwp=False, features=[]):
if uwp:
return False
if "media-dummy" in features:
Expand Down

0 comments on commit 528322c

Please sign in to comment.