Skip to content

Commit

Permalink
removed a bug in server
Browse files Browse the repository at this point in the history
  • Loading branch information
sirrice committed Feb 27, 2016
1 parent cf78fa7 commit 61de464
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bibcleaner/server.py
Expand Up @@ -13,6 +13,7 @@

import click
import biblib.bib
from urllib import parse
import sqlalchemy
from sqlalchemy import *
from sqlalchemy.pool import NullPool
Expand Down Expand Up @@ -170,7 +171,7 @@ def new_mapping():
try:
print(request.form)

old = request.form['oldbook']
old = parse.unquote(request.form['oldbook'])
new = request.form['newbook']
print((old, new))
try:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@

setup(
name='bibcleaner',
version='0.0.6',
version='0.0.7',
description='Poor man\'s bibtex cleaner and normalizer',
url='https://github.com/sirrice/bibcleaner',
author='Eugene wu',
Expand Down

0 comments on commit 61de464

Please sign in to comment.