From 1d3eaef90cecd70b4282ccd11693feb85e72aa21 Mon Sep 17 00:00:00 2001
From: Alex Kost <alezost@gmail.com>
Date: Mon, 10 Aug 2015 15:46:10 +0300
Subject: [PATCH] import: elpa: Fix typo.

Reported by Eric Dvorsak <eric@dvorsak.fr> on #guix.

* guix/scripts/import/elpa.scm (%default-options): Remove redundant
  quote which led to an error if --archive option was not specified.
---
 guix/scripts/import/elpa.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/scripts/import/elpa.scm b/guix/scripts/import/elpa.scm
index 9034eb74e73..c72aaf0760c 100644
--- a/guix/scripts/import/elpa.scm
+++ b/guix/scripts/import/elpa.scm
@@ -34,7 +34,7 @@ (define-module (guix scripts import elpa)
 ;;;
 
 (define %default-options
-  '((repo . 'gnu)))
+  '((repo . gnu)))
 
 (define (show-help)
   (display (_ "Usage: guix import elpa PACKAGE-NAME
-- 
GitLab