From e057bdbc79b2563f4fe93f738c96de942c41f8a4 Mon Sep 17 00:00:00 2001
From: Matt Wala <wala1@illinois.edu>
Date: Wed, 23 Jan 2019 14:37:59 -0600
Subject: [PATCH] Fix line length

---
 loopy/kernel/instruction.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/loopy/kernel/instruction.py b/loopy/kernel/instruction.py
index 543d8e637..6b0fa64db 100644
--- a/loopy/kernel/instruction.py
+++ b/loopy/kernel/instruction.py
@@ -1097,7 +1097,8 @@ class CallInstruction(MultiAssignmentBase):
             for temp_var_type in temp_var_types:
                 if temp_var_type is lp.auto:
                     warn("temp_var_type should be Optional(None) if "
-                         "unspecified, not auto. This usage will be disallowed soon.",
+                         "unspecified, not auto. "
+                         "This usage will be disallowed soon.",
                          DeprecationWarning, stacklevel=2)
                     temp_var_type = lp.Optional(None)
                 processed_temp_var_types.append(temp_var_type)
-- 
GitLab