Skip to content

Commit

Permalink
python2 bugfix related to print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Hunter Senft-Grupp committed Mar 21, 2016
1 parent 270880c commit 02a732d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions bragly/__main__.py
@@ -1,6 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Entry point(s) for the command line interface"""
from __future__ import absolute_import, print_function
from bragly.cli import parse_args, parse_utility_args
import sys

Expand Down
2 changes: 1 addition & 1 deletion bragly/cli.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""Represents the needed functions and logic for a command line interface."""

from __future__ import absolute_import, print_function
import argparse
from bragly.brag import write, read, search, init, PERSIST_CHOICES
from bragly.config import BRAG_DIR, CONFIG_FILE_PATH
Expand Down
1 change: 1 addition & 0 deletions bragly/tests/test_cli.py
@@ -1,3 +1,4 @@
from __future__ import absolute_import, print_function
from bragly.cli import parse_args
import arrow

Expand Down

0 comments on commit 02a732d

Please sign in to comment.