about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhanemile <emile.hansmaennel@gmail.com>2017-12-11 20:53:02 +0100
committerhanemile <emile.hansmaennel@gmail.com>2017-12-11 20:53:02 +0100
commit04158f3c86087ba8fe866c5209f0fa9db30d977c (patch)
tree12960680462ad505e22fd8d975074eb3e62512ab
parentff957a87dfe774f38e0c2386f344beb6c3fbaeb2 (diff)
fixed missing +
-rwxr-xr-xsrc/coord.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coord.py b/src/coord.py
index ecd978c..0a7a9d4 100755
--- a/src/coord.py
+++ b/src/coord.py
@@ -130,7 +130,7 @@ def main():
     d = "{:<20}{:<20}".format("Stars Kicked:", str(stars_kicked))
     e = "{:<20}{:<20}".format("Percent: ", str( nos / stars_kicked * 100 ) + "%")
 
-    f = a + "\n" + b "\n" + c + "\n" + d + "\n" + e
+    f = a + "\n" + b + "\n" + c + "\n" + d + "\n" + e
 
     call(["telegram-send", "--pre", str(f) ])