Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update develop from master. #7

Merged
merged 3 commits into from
Mar 21, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bragly/__main__.py
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import absolute_import, print_function
from bragly.cli import parse_args
import arrow

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def brag_dir():

setup(
name='bragly',
version='0.1.0',
version='0.1.1',
description='A small tool to remind yourself of your day-to-day accomplishments',
long_description = readme,
url='http://github.com/huntcsg/bragly',
Expand Down