Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ccbogel authored Nov 1, 2020
1 parent 8d4f3d2 commit 240a3aa
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions qualcoder/qualcoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

"""
Copyright (c) 2019 Colin Curtain
Copyright (c) 2020 Colin Curtain
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -41,11 +41,6 @@
import traceback
import urllib.request
import webbrowser
ZoneInfo = None # Available in python 3.9 and higher
try:
from zoneinfo import ZoneInfo
except:
pass

from PyQt5 import QtCore, QtGui, QtWidgets

Expand All @@ -71,7 +66,7 @@
from view_graph_original import ViewGraphOriginal
from view_image import DialogCodeImage

qualcoder_version = "QualCoder 2.0"
qualcoder_version = "QualCoder 2.1"

path = os.path.abspath(os.path.dirname(__file__))
home = os.path.expanduser('~')
Expand Down Expand Up @@ -214,7 +209,7 @@ def append_recent_project(self, path):
return

proj_path = ""
splt = result[0].split("|")
splt = result[0].split("|") #open_menu
if len(splt) == 1:
proj_path = splt[0]
if len(splt) == 2:
Expand Down

0 comments on commit 240a3aa

Please sign in to comment.