Skip to content

Commit

Permalink
Bump coloredlogs requirement for upstream bug fix*
Browse files Browse the repository at this point in the history
This removes a sloppy implicit to-do list item I had
left behind in the rsync_system_backup.cli module :-)
  • Loading branch information
xolox committed Apr 17, 2017
1 parent 4e82396 commit f72b635
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
coloredlogs >= 5.0
coloredlogs >= 6.1
executor >= 16.0.1
humanfriendly >= 1.44.5
proc >= 0.12
Expand Down
4 changes: 2 additions & 2 deletions rsync_system_backup/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# rsync-system-backup: Linux system backups powered by rsync.
#
# Author: Peter Odding <peter@peterodding.com>
# Last Change: April 14, 2017
# Last Change: April 17, 2017
# URL: https://github.com/xolox/python-rsync-system-backup

"""
Expand Down Expand Up @@ -42,7 +42,7 @@
)

# Semi-standard module versioning.
__version__ = '0.1'
__version__ = '0.1.1'

# Initialize a logger for this module.
logger = logging.getLogger(__name__)
Expand Down
5 changes: 2 additions & 3 deletions rsync_system_backup/cli.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# rsync-system-backup: Linux system backups powered by rsync.
#
# Author: Peter Odding <peter@peterodding.com>
# Last Change: April 14, 2017
# Last Change: April 17, 2017
# URL: https://github.com/xolox/python-rsync-system-backup

"""
Expand Down Expand Up @@ -144,8 +144,7 @@
def main():
"""Command line interface for the ``rsync-system-backup`` program."""
# Initialize logging to the terminal and system log.
# coloredlogs.install()
coloredlogs.install(syslog='debug')
coloredlogs.install(syslog=True)
# Parse the command line arguments.
context_opts = dict()
program_opts = dict()
Expand Down

0 comments on commit f72b635

Please sign in to comment.