Skip to content

Commit

Permalink
Another quick bugfix; version 1.6.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
DreamCobbler committed Oct 30, 2020
1 parent bc8622b commit 65ba7a7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
6 changes: 6 additions & 0 deletions Docs/Changelogs.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.6.2

**General:**

- Another quick bugfix, once more about imports.

# 1.6.1

**General:**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [fiction-dl](https://github.com/DreamCobbler/fiction-dl) (*1.6.1*)
# [fiction-dl](https://github.com/DreamCobbler/fiction-dl) (*1.6.2*)

![Screenshot (Windows 10)](/Stuff/Screenshot%20(Windows%2010).png?raw=true)
![Screenshot (Linux Mint 20)](/Stuff/Screenshot%20(Linux%20Mint%2020).png?raw=true)
Expand Down
2 changes: 1 addition & 1 deletion fiction_dl/Configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#

ApplicationName = "fiction-dl"
ApplicationVersion = "1.6.1"
ApplicationVersion = "1.6.2"
ApplicationShortDescription = (
"A fiction downloader, capable of retrieving works of fiction from the net and saving them in a"
"few common file formats."
Expand Down
8 changes: 7 additions & 1 deletion fiction_dl/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@

if __package__ is None:

from Utilities.Filesystem import GetPackageDirectory
try:

from Utilities.Filesystem import GetPackageDirectory

except ImportError:

from fiction_dl.Utilities.Filesystem import GetPackageDirectory

from dreamy_utilities.Filesystem import AddToPATH

Expand Down

0 comments on commit 65ba7a7

Please sign in to comment.