From 9f32a08b28cd34960953482c9a5a8012bdf7a7f3 Mon Sep 17 00:00:00 2001
From: Bob Lantz <rlantz@cs.stanford.edu>
Date: Thu, 11 Mar 2010 16:54:30 -0800
Subject: [PATCH] Minor cleanup; got rid of backslash.

---
 setup.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/setup.py b/setup.py
index 30150793..35015223 100644
--- a/setup.py
+++ b/setup.py
@@ -1,11 +1,11 @@
 #!/usr/bin/env python
-'''Setuptools params'''
+"Setuptools params"
 
 from setuptools import setup, find_packages
 from os.path import join
 
-scripts = [join('bin', filename) for filename in
-            ['mn', 'mnclean']]
+scripts = [ join('bin', filename) for filename in
+            ['mn', 'mnclean'] ]
 
 modname = distname = 'mininet'
 
@@ -16,7 +16,7 @@
     author='Bob Lantz',
     author_email='rlantz@cs.stanford.edu',
     packages=find_packages(exclude='test'),
-    long_description="""\
+    long_description="""
 Insert longer description here.
       """,
     classifiers=[
-- 
GitLab