Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
faebser committed Jan 28, 2016
1 parent 117f2c2 commit 99ee464
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@

.PHONY: run
run: update pistream.py
run: activate update pistream.py
python pistream.py


.PHONY: clean
update:
-@git fetch --all
-@git reset --hard origin/master

env:
virtualenv env
pip install configparser==3.3.0r2
pip install enum34==1.0.4

.PHONE: activate
activate: env
source env/bin/activate
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from ConfigParser import NoOptionError, NoSectionError, ConfigParser
from configparser import NoOptionError, NoSectionError, ConfigParser
import tempfile
from startup_tests.test_manager import TestStatus
import json
Expand Down
5 changes: 2 additions & 3 deletions startup_tests/test_manager.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
__author__ = 'faebser'

from enum import Enum
import bottle

__author__ = 'faebser'


class TestStatus(Enum):
Expand Down

0 comments on commit 99ee464

Please sign in to comment.