Skip to content

Commit

Permalink
Arranged project structure for easier use.
Browse files Browse the repository at this point in the history
  • Loading branch information
artursl committed May 10, 2019
1 parent 9e4a670 commit 1bc2573
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Empty file added __init__.py
Empty file.
4 changes: 2 additions & 2 deletions routeros_api.py
Expand Up @@ -4,7 +4,7 @@
import ssl
import hashlib
import binascii
import verbose as verbose_package
from verbose import Log

# Constants - Define defaults
PORT = 8728
Expand Down Expand Up @@ -58,7 +58,7 @@ def __init__(self, address, user=USER, password=PASSWORD, use_ssl=USE_SSL, port=
self.port = PORT

# Create Log instance to save or print verbose logs
self.log = verbose_package.Log(verbose, VERBOSE_LOGIC, VERBOSE_FILE_MODE)
self.log = Log(verbose, VERBOSE_LOGIC, VERBOSE_FILE_MODE)
self.log('')
self.log('#-----------------------------------------------#')
self.log('API IP - {}, USER - {}'.format(address, user))
Expand Down

0 comments on commit 1bc2573

Please sign in to comment.