Skip to content

Commit

Permalink
Fixed old module names
Browse files Browse the repository at this point in the history
  • Loading branch information
miterion committed Jul 31, 2017
1 parent 138c321 commit 46023a8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pytimesheet/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
from collections import namedtuple
from random import choice

from timetrack.utils import get_config
from timetrack import storage, generate
from pytimesheet.utils import get_config
from pytimesheet import storage, generate


def print_hours(args):
Expand Down
2 changes: 1 addition & 1 deletion pytimesheet/generate.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from timetrack.utils import get_config, get_config_path, open_file
from pytimesheet.utils import get_config, get_config_path, open_file

from jinja2 import Environment, FileSystemLoader
from os import getcwd, path
Expand Down
2 changes: 1 addition & 1 deletion pytimesheet/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from os.path import exists
from os import makedirs

from timetrack.utils import get_config_path
from pytimesheet.utils import get_config_path
JOBSPATH = Path(get_config_path()).joinpath('job')

def newjobfolder():
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

setup(
name='pytimesheet',
version='0.0.3',
version='0.0.5',
license='GPL',
description='timetracking for hiwis at tu darmstadt',
install_requires =['Jinja2'],
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'timesheet=pytimesheet.cli:main',
'pytimesheet=pytimesheet.cli:main',
],
}
)

0 comments on commit 46023a8

Please sign in to comment.