From df633cfab682e1751ab4a121a5815b03dc1e9a24 Mon Sep 17 00:00:00 2001 From: daniel-123 Date: Tue, 25 Sep 2012 19:09:42 +0200 Subject: [PATCH] Added shebang line to make syncplayClient.py executable on Linux. --- syncplayClient.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/syncplayClient.py b/syncplayClient.py index 18749eb..5137cb6 100644 --- a/syncplayClient.py +++ b/syncplayClient.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python + import os class Syncplay(object): @@ -10,4 +12,4 @@ class Syncplay(object): SyncplayMPC() if(__name__ == '__main__'): - Syncplay() \ No newline at end of file + Syncplay()