summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pycco/languages.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pycco/languages.py b/pycco/languages.py
index cb9edd1..29bf16d 100644
--- a/pycco/languages.py
+++ b/pycco/languages.py
@@ -23,8 +23,7 @@ def lang(name, comment_symbol, multistart=None, multiend=None):
"comment_symbol": comment_symbol
}
if multistart is not None and multiend is not None:
- result["multistart"] = multistart
- result["multiend"] = multiend
+ result.update(multistart=multistart, multiend=multiend)
return result