made stuff more pythonic
diff --git a/frc971/control_loops/python/control_loop.py b/frc971/control_loops/python/control_loop.py
index 4c5b32f..bc460cf 100644
--- a/frc971/control_loops/python/control_loop.py
+++ b/frc971/control_loops/python/control_loop.py
@@ -89,8 +89,8 @@
def WriteCC(self, header_file_name, cc_file):
"""Writes the cc file to the file named cc_file."""
with open(cc_file, 'w') as fd:
- fd.write('#include \"' + self._namespaces[0] +
- '/control_loops/%s\"\n' % header_file_name)
+ fd.write('#include \"%s/control_loops/%s\"\n' %
+ (self._namespaces[0] + header_file_name))
fd.write('\n')
fd.write('#include <vector>\n')
fd.write('\n')