add comment

This commit is contained in:
Tyrel Souza 2014-10-30 13:56:05 -04:00
parent 3b47a8a5eb
commit fa4b3396b6

View File

@ -1,4 +1,4 @@
def glue(*args, **kwargs):
what_to_glue = list(args)
what_to_glue.extend([v for k,v in kwargs.iteritems()])
what_to_glue.extend([v for k,v in kwargs.iteritems()]) # Ignore all your keys, because you're doing this wrong anyway
return " ".join(what_to_glue)