Skip to content

Commit ce50a63

Browse files
author
John Haley
committed
Fix double-quote linter issue
1 parent 9446b1d commit ce50a63

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/remote.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Remote.prototype.setCallbacks = function(callbacks) {
3636
Remote.prototype.push = function(refSpecs, options, signature, message) {
3737
options = normalizeOptions(options, NodeGit.PushOptions);
3838
signature = signature || this.owner().defaultSignature();
39-
message = message || 'Push to ' + this.name();
39+
message = message || "Push to " + this.name();
4040

4141
return push.call(this, refSpecs, options, signature, message);
4242
};

0 commit comments

Comments
 (0)