Skip to content

Commit

Permalink
Fixes string to single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackbaud-AaronDershem committed May 27, 2017
1 parent f64adee commit f0c76c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batavia/builtins/reversed.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var types = require('../types')
function reversed(args, kwargs) {
var iterable = args[0]
if (args.length === 0) {
throw new exceptions.TypeError.$pyclass("reversed expected 1 arguments, got 0")
throw new exceptions.TypeError.$pyclass('reversed expected 1 arguments, got 0')
}
if (types.isinstance(iterable, [types.List, types.Tuple])) {
var new_iterable = iterable.slice(0)
Expand Down

0 comments on commit f0c76c8

Please sign in to comment.