Commit 2616cc8eb4e598279c5a9a177896ca4494c942d3

Authored by Etienne Pallier
1 parent 77f1c546
Exists in dev

ignore some files

.gitignore
1 1 .DS_Store
2   -private
3   -venv
  2 +/private
  3 +/venv/
4 4 __pycache__
5 5 *.pyc
6 6 *.py.bak
7 7 *.png
8   -#/.settings/
  8 +/.settings/
9 9 #/.pydevproject
10 10 src/images/*_*
11 11 src/alert_manager/twistd*
... ...
src/agent/.gitignore 0 → 100644
... ... @@ -0,0 +1 @@
  1 +/client.log
... ...
src/agent/AgentDevice.py
1 1 #!/usr/bin/env python3
2   -
  2 +# ENCODING: Ok for Unix and Mac
  3 +# For Windows, replace Utf-8" with "Latin-1"
  4 +# -*-coding:Utf-8 -*
3 5  
4 6 import sys
5 7 ##import utils.Logger as L
... ...