From 5bbc65d55f1eb75e89eb5141d51b57d0eecd91c8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fabian=20W=C3=BCrfl?= <fabian.wuerfl@gmx.at>
Date: Wed, 16 Aug 2017 21:25:03 +0200
Subject: [PATCH] Fix syntax error in src/shell/variables.rs

introduced by c1fdd5e
---
 src/shell/variables.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/shell/variables.rs b/src/shell/variables.rs
index e08f9690..0f2d340b 100644
--- a/src/shell/variables.rs
+++ b/src/shell/variables.rs
@@ -200,7 +200,7 @@ impl Variables {
                         eprintln!("ion: {} is not a valid color", name);
                         None
                     }
-                }
+                },
                 "env" => env::var(variable).map(Into::into).ok(),
                 _ => {
                     // Attempt to obtain the given namespace from our lazily-generated map of namespaces.
-- 
GitLab