From d6e8f49cc970181b342b1b9c08157d499b9930e0 Mon Sep 17 00:00:00 2001
From: Aditya Bansal <adi.bansal241996@gmail.com>
Date: Sun, 4 Jun 2017 14:58:37 +0530
Subject: [PATCH] pep8: Add compliance with rule E261 virtual_fs.py.

---
 bots/virtual_fs/virtual_fs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bots/virtual_fs/virtual_fs.py b/bots/virtual_fs/virtual_fs.py
index 239ede3a..00576dfa 100644
--- a/bots/virtual_fs/virtual_fs.py
+++ b/bots/virtual_fs/virtual_fs.py
@@ -18,7 +18,7 @@ class VirtualFsHandler(object):
             state = {}
 
         recipient = message['display_recipient']
-        if isinstance(recipient, list): # If not a stream, then hash on list of emails
+        if isinstance(recipient, list):  # If not a stream, then hash on list of emails
             recipient = " ".join([x['email'] for x in recipient])
 
         if recipient not in state: